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