pub trait SimdQuat<N> {
type Result;
// Required method
fn diff_conj1_2(&self, rhs: &Self) -> Self::Result;
}
Expand description
Trait implemented by quaternions.
Required Associated Types§
Required Methods§
Sourcefn diff_conj1_2(&self, rhs: &Self) -> Self::Result
fn diff_conj1_2(&self, rhs: &Self) -> Self::Result
Compute the differential of inv(q1) * q2
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.