Trait Matrix3Ext

Source
pub trait Matrix3Ext<T>
where T: Scalar,
{ // Required methods fn side(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>; fn up(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>; fn look(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>; }

Required Methods§

Source

fn side(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>

Source

fn up(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>

Source

fn look(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>

Implementors§

Source§

impl<T> Matrix3Ext<T> for Matrix<T, Const<3>, Const<3>, ArrayStorage<T, 3, 3>>
where T: Scalar + Copy + Clone,