Trait ncollide_math::Isometry [] [src]

pub trait Isometry<P: Point>: Send + Sync + 'static + Display + AlgaIsometry<P> {
    fn absolute_rotate_vector(&self, v: &P::Vector) -> P::Vector;
}

Trait implemented by isometry types usable by ncollide.

Required Methods

Computes the product abs(rot) * v where abs(self) is the absolute value of the matrix representation of self.rotation().

Implementors