Type Definition nyx_space::linalg::Matrix3

source · []
pub type Matrix3<T> = Matrix<T, Const<3>, Const<3>, ArrayStorage<T, 3, 3>>;
Expand description

A stack-allocated, column-major, 3x3 square matrix.

Because this is an alias, not all its methods are listed here. See the Matrix type too.