pub trait VersorMul<Rhs>: Sized {
    type Output;
    fn versor_mul(self, rhs: Rhs) -> Self::Output;
}
Expand description

Implemented on versor types in order to apply their transformation to various values

This is mainly intended as a driver for member fuctions of the different versor types (eg Rotor::rot(), Versor::apply(), etc) and not to be used on its own.

Associated Types

Required methods

Implementors