[src]

Trait nalgebra::na::Inv

pub trait Inv {
    fn inv_cpy(m: &Self) -> Option<Self>;
    fn inv(&mut self) -> bool;
}

Trait of objects having an inverse. Typically used to implement matrix inverse.

Required Methods

fn inv_cpy(m: &Self) -> Option<Self>

Returns the inverse of self.

fn inv(&mut self) -> bool

In-place version of inverse.

Implementors