pub type Mat2f = Matrix2<f32>;
2x2 single-precision matrix.
#[repr(C)]pub struct Mat2f { pub col: [Vector2<f32>; 2], }
col: [Vector2<f32>; 2]
Column vectors of the matrix