Trait nalgebra::Inv [] [src]

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

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

Required Methods

fn inv(&self) -> Option<Self>

Returns the inverse of m.

fn inv_mut(&mut self) -> bool

In-place version of inverse.

Implementors