pub trait TranslationInterpolate<S> {
// Required method
fn translation_interpolate(&self, other: &Self, amount: S) -> Self;
}
Expand description
Trait used for interpolation of translation only in transforms
Required Methods§
Sourcefn translation_interpolate(&self, other: &Self, amount: S) -> Self
fn translation_interpolate(&self, other: &Self, amount: S) -> Self
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.