Type Definition nalgebra::base::SMatrix[][src]

type SMatrix<T, const R: usize, const C: usize> = Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>;

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.

Trait Implementations

impl<'b, T, const R1: usize, const C1: usize> DivAssign<&'b Rotation<T, C1>> for SMatrix<T, R1, C1> where
    T: Scalar + Zero + One + ClosedAdd + ClosedMul
[src]

impl<T, const R1: usize, const C1: usize> DivAssign<Rotation<T, C1>> for SMatrix<T, R1, C1> where
    T: Scalar + Zero + One + ClosedAdd + ClosedMul
[src]

impl<'b, T, const R1: usize, const C1: usize> MulAssign<&'b Rotation<T, C1>> for SMatrix<T, R1, C1> where
    T: Scalar + Zero + One + ClosedAdd + ClosedMul
[src]

impl<T, const R1: usize, const C1: usize> MulAssign<Rotation<T, C1>> for SMatrix<T, R1, C1> where
    T: Scalar + Zero + One + ClosedAdd + ClosedMul
[src]