Trait FromMatrix

Source
pub trait FromMatrix<T>
where T: RealNumber,
{ type Output; // Required method fn get(self) -> (Self::Output, usize); }
Expand description

Retrieves the underlying storage from a matrix.

Required Associated Types§

Source

type Output

Type of the underlying storage of a matrix.

Required Methods§

Source

fn get(self) -> (Self::Output, usize)

Gets the underlying matrix and the number of elements which contain valid.

Implementors§

Source§

impl<V, S, T> FromMatrix<T> for Matrix2xN<V, S, T>
where T: RealNumber, V: Vector<T>, S: ToSlice<T>,

Source§

impl<V, S, T> FromMatrix<T> for Matrix3xN<V, S, T>
where T: RealNumber, V: Vector<T>, S: ToSlice<T>,

Source§

impl<V, S, T> FromMatrix<T> for Matrix4xN<V, S, T>
where T: RealNumber, V: Vector<T>, S: ToSlice<T>,

Source§

impl<V, S, T> FromMatrix<T> for MatrixMxN<V, S, T>
where T: RealNumber, V: Vector<T>, S: ToSlice<T>,