Matrix4Ext

Trait Matrix4Ext 

Source
pub trait Matrix4Ext<T: Scalar> {
    // Required methods
    fn side(&self) -> Vector3<T>;
    fn up(&self) -> Vector3<T>;
    fn look(&self) -> Vector3<T>;
    fn position(&self) -> Vector3<T>;
    fn basis(&self) -> Matrix3<T>;
}

Required Methods§

Source

fn side(&self) -> Vector3<T>

Source

fn up(&self) -> Vector3<T>

Source

fn look(&self) -> Vector3<T>

Source

fn position(&self) -> Vector3<T>

Source

fn basis(&self) -> Matrix3<T>

Implementations on Foreign Types§

Source§

impl<T: Scalar + Default + Copy + Clone> Matrix4Ext<T> for Matrix4<T>

Source§

fn side(&self) -> Vector3<T>

Source§

fn up(&self) -> Vector3<T>

Source§

fn look(&self) -> Vector3<T>

Source§

fn position(&self) -> Vector3<T>

Source§

fn basis(&self) -> Matrix3<T>

Implementors§