Cameron Hart

Results 69 comments of Cameron Hart

Ah I didn't know about that. It's probably not difficult to add, the tricky part is I have no idea how I'd test it. It would be really great if...

I've just added experimental `core::simd` support in main which could be used to get simd support on arm/aarch64 until I get around to adding explicit neon support. This does require...

Currently `BVecN` contain N x `bool`, so they are quite compact. On platforms with SIMD the SIMD masks are wrapped with `BVec3A` and `BVec4`. The idea here is the best...

What would the method signature look like? Is there a method on `Mat3` that you think should be on `Quat` as well?

Does https://docs.rs/glam/latest/glam/f32/struct.Quat.html#method.from_rotation_arc do what you want?

I think you will always need two vectors to determine what the rotation should be.

Sorry, I've been meaning to get to this. I've been mulling over if changing the default implementation would cause anyone issues. Allegedly the main advantage of the method glam is...

Another thing to consider with changing the current implementation is currently `t` is not clamped, but it will extrapolate just fine if `t < 0` or `t > 1`. If...

I think I know what you are getting at @ten3roberts but it might help to include example code.

I noticed that `Debug` printing will respect the precision values because the way it is implemented is different to `Display`. You can kind of work around this to get what...