pub type Mat3 = Mat3x3;
Matrix of f32s with 3 columns and 3 rows. Alignment 16, size 48.
#[repr(C, align(16))]pub struct Mat3 { pub inner: [Vec3; 3], /* private fields */ }
inner: [Vec3; 3]