pub type Mat4f = Matrix4<f32>;
4x4 single-precision matrix.
#[repr(C)]pub struct Mat4f { pub col: [Vector4<f32>; 4], }
col: [Vector4<f32>; 4]
Column vectors of the matrix