pub type Mat4 = Matrix<4, 4>;
A 4x4 column-major matrix of f32 values, matching OpenGL and glTF conventions.
f32
use vectorama::Mat4; let m = Mat4::ones();
pub struct Mat4 { /* private fields */ }