pub type Mat4U<T> = Matrix<4, T, Unaligned>;
A 4x4 column major matrix.
This type is not SIMD-aligned and has the memory layout of [T; 16].
[T; 16]
pub struct Mat4U<T>(/* private fields */);