| 30 | /// Fast 4x4 f32 matrix backed by glam. |
| 31 | #[derive(Clone, Copy, Debug, PartialEq)] |
| 32 | pub struct Matrix4(pub Mat4); |
| 33 | |
| 34 | trait MatrixElementOps: Copy { |
| 35 | fn add_assign_matrix(out: &mut [Self], rhs: &[Self]); |
no outgoing calls
no test coverage detected