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