pub trait ApplyAngular<S, A> {
    fn apply(&self, velocity: &A, dt: S) -> Self;
}
Expand description

Apply an angular velocity to a rotational quantity

Type parameters:

  • A: Angular velocity, usually Scalar or Vector3

Required Methods

Apply given velocity

Implementations on Foreign Types

Implementors