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