1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Aliases types used to make it easier using long linear algebra types.

/// 2x2 floating matrix.
pub type M22 = [[f32; 2]; 2];

/// 3x3 floating matrix.
pub type M33 = [[f32; 3]; 3];

/// 4x4 floating matrix.
pub type M44 = [[f32; 4]; 4];