pub trait RigidMotionComposition<N: RealField + Copy>: RigidMotion<N> {
    fn prepend_translation(
        &self,
        translation: Vector<N>
    ) -> PrependTranslation<'_, N, Self> { ... }
fn prepend_transformation(
        &self,
        transformation: Isometry<N>
    ) -> PrependTransformation<'_, N, Self> { ... } }
Expand description

Trait for composing some rigid motions.

Provided methods

Prepend a translation to the rigid motion self.

Prepend a transformation to the rigid motion self.

Implementors