Type Definition na::SMatrixView

source ·
pub type SMatrixView<'a, T, const R: usize, const C: usize> = Matrix<T, Const<R>, Const<C>, ViewStorage<'a, T, Const<R>, Const<C>, Const<1>, Const<R>>>;
Expand description

A column-major matrix view with dimensions known at compile-time.

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