Cameron Hart

Results 86 comments of Cameron Hart

@acki-m I've created PR's #81 and #85 to remove the boost dependency. They aren't merged yet, but in the mean time if you feel like testing them that would be...

There is one remaining reference to boost in `include/nonius/clock.h++`. But this is only used if `NONIUS_USE_BOOST_CHRONO` is defined or if `NONIUS_MSVC` version < 1900. I don't think MSVC < 1900...

I don't really know enough about Bevy internals to answer. If you want to have an aligned array of `u8` I don't think `std::simd` can help with that as you...

Out of curiosity, what do you want to use them for? I have not seen eigenvalues and eigenvectors used in the context of game dev that I can recall. I...

It's probably not unreasonable given there's no lerp on f32, etc. There was some discussion about adding lerp to the core libraries but there was a lot of nuance to...

It would need to be a trait that has an impl for `f32` and `f64`.

I wouldn't replace any methods with trait implementations. I avoid using traits for core functionality in glam because I think it makes methods less discoverable.

It has been a long time since I looked at this. It looks like `cimgui` is now autogenerated rather than hand written like it was when I forked it. So...

I did start playing around with this idea earlier this year, I can't remember where I got to with it. I think I wanted to put it off until there's...

> In the past I had implemented these to contain N x u32 so they would be closer to the SIMD implementation, but I think it probably performs worse than...