pub trait Interpolatable: LieGroup {
// Required methods
fn interp(&self, other: &Self, t: f64) -> Self;
fn slerp(&self, other: &Self, t: f64) -> Self;
}Expand description
Trait for Lie groups that support interpolation.
Required Methods§
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.