| 15 | /// Row-major const-size matrix. |
| 16 | #[derive(Clone, Copy, Debug, PartialEq)] |
| 17 | pub struct Matrix<const ROWS: usize, const COLS: usize, T = f32>(pub [[T; COLS]; ROWS]); |
| 18 | |
| 19 | /// Row-major square const-size matrix. |
| 20 | pub type SqMatrix<const SZ: usize, T = f32> = Matrix<SZ, SZ, T>; |
no outgoing calls
no test coverage detected