Type Definition nalgebra::base::SMatrix [−][src]
pub type SMatrix<T, const R: usize, const C: usize> = Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>;
Expand description
A statically sized column-major matrix with R
rows and C
columns.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.
Implementations
Creates a new statically-allocated matrix from the given ArrayStorage
.
This method exists primarily as a workaround for the fact that from_data
can not
work in const fn
contexts.