pub trait WQuat<N> {
    type Result;

    fn diff_conj1_2(&self, rhs: &Self) -> Self::Result;
}
Expand description

Trait implemented by quaternions.

Required Associated Types

The result of quaternion differentiation.

Required Methods

Compute the differential of inv(q1) * q2.

Implementations on Foreign Types

Implementors