Type Definition na::Matrix3xX

source · []
pub type Matrix3xX<T> = Matrix<T, Const<3_usize>, Dynamic, VecStorage<T, Const<3_usize>, Dynamic>>;
Expand description

A heap-allocated, row-major, matrix with 3 rows and a dynamic number of columns.

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