pub type Mat3f = Matrix3<f32>;
3x3 single-precision matrix.
#[repr(C)]pub struct Mat3f { pub col: [Vector3<f32>; 3], }
col: [Vector3<f32>; 3]
Column vectors of the matrix