Cameron Hart
Cameron Hart
Do you have a use case for these or is this more because they aren't implemented yet?
The macros are annoying to understand when they don't work. The first one is from `test_ops`: ``` let a = $new(2 as $t, 4 as $t, 8 as $t, 16...
Fixed in #575 , thanks @AlessandroCanossa !
Leaving this open as while the existing docs have been improved I want to consider moving the projection matrix methods out of `Mat4` and `DMat4` entirely. There are a lot...
@cwfitzgerald your look_at impl isn't public is it? might be useful having projects that are using different conventions to test any changes against.
Probably just forgot to add them
While I can look at adding `log2`, recent glam changes mean you should be able to do `range.as_vec3().map(|x| x.log2()).ceil().as_u8vec3()` `map` was added in `0.29.0` and `as_u8vec3` should be in `0.29.1`.
Yes, this would be OK with me. I know it's a problem for bevy every time I make a glam release they need a matching encase release. I could see...
I'm a bit undecided on this one. It feels like something that might be better supported in some kind of 2D bounding box type, put for now that is out...
The main reason I didn't add them is working with rows will incur additional overhead due to the need to transpose, because the user needs to transpose data themselves that...