Type Definition nalgebra::base::SMatrixSliceMut
source · pub type SMatrixSliceMut<'a, T, const R: usize, const C: usize> = Matrix<T, Const<R>, Const<C>, ViewStorageMut<'a, T, Const<R>, Const<C>, Const<1>, Const<R>>>;
👎Deprecated: Use SMatrixViewMut instead. See issue #1076 for more information.
Expand description
A column-major matrix slice with dimensions known at compile-time.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.