[][src]Trait nshare::ToNalgebra

pub trait ToNalgebra {
    type Out;
    pub fn to_nalgebra(self) -> Self::Out;
}

Converts a 1 or 2 dimensional type to a nalgebra type.

This uses an associated type to avoid ambiguity for the compiler. By calling this, the compiler always knows the returned type.

Associated Types

Loading content...

Required methods

pub fn to_nalgebra(self) -> Self::Out[src]

Loading content...

Implementors

Loading content...