pub trait Transformation<S> {
    fn transform_point(&self, p: Point<S>) -> Point<S>;
    fn transform_vector(&self, v: Vector<S>) -> Vector<S>;
}

Required Methods§

Implementations on Foreign Types§

Implementors§