pub type Mat4 = Mat4x4;
Matrix of f32s with 4 columns and 4 rows. Alignment 16, size 64.
#[repr(C, align(16))]pub struct Mat4 { pub inner: [Vec4; 4], /* private fields */ }
inner: [Vec4; 4]