pub type Mat2 = Mat2x2;
Matrix of f32s with 2 columns and 2 rows. Alignment 8, size 16.
#[repr(C, align(8))]pub struct Mat2 { pub inner: [Vec2; 2], /* private fields */ }
inner: [Vec2; 2]