Type Definition mint::Matrix2x3 [] [src]

type Matrix2x3<T> = [[T; 2]; 3];

2x3 matrix. Useful for combinging rotation, scale, and translation in 2D space, when stored as column-major.