pub trait IsometryOps<T> {
    fn absolute_transform_vector(&self, v: &Vector<T>) -> Vector<T>;
}
Expand description

Extra operations with isometries.

Required Methods

Transform a vector by the absolute value of the homogeneous matrix equivalent to self.

Implementors