Kyle Beggs

Results 41 comments of Kyle Beggs
trafficstars

This issue has gone on a tangent unrelated to the root of the original issue. There is an issue for both `intersection(::Ray, ::Tetrahedron)` and `intersection(::Ray, ::Mesh)`. I haven't tested any...

Yes, I just iterated through the elements of the mesh and checked the intersection for each.

Temporary solution still breaks if you type annotate the implementation: ```julia julia> using BinaryTraits julia> using BinaryTraits: Prefix julia> @trait Foo julia> @implement Prefix.Is{Foo} by f(_, x::Any) julia> struct Bar...

Maybe I don't fully understand how the package works then - I would expect a subtype to satisfy? What am I missing? Nvm - I had them reversed

This is the actual MWE which I am struggling with (which works with Julia 1.9): ```julia using BinaryTraits using BinaryTraits: Prefix @trait Foo @trait Faz abstract type AbstractBar end abstract...

Yeah that makes sense, so this passing in Julia

Ok, I suppose the lapse in my understanding then is how exactly BinaryTraits.jl handles `@implement Is{Foo} by f(_, x)`? Its confusing to me because by leaving out the type you...

@SBuercklin I think this package is dead. No commits > 3 years and no response here in a year. It is breaking on julia 1.10. We are going to move...

yes, that was my impression during my brief look at the code