Type Alias Matrix3

Source
pub type Matrix3<T> = [[T; 3]; 3];
Expand description

A 3x3 matrix.

To multiply two matrices use row_mat3_mul or col_mat3_mul.