pub type Matrix44 = Matrix<4, 4>;
A 4x4 matrix, allocated on the stack.
pub struct Matrix44 { pub rows: [[f64; 4]; 4], }
rows: [[f64; 4]; 4]
The elements of the matrix