pub trait Lerp<F: Real> {
// Required method
fn lerp(&self, b: &Self, factor: F) -> Self;
}
Expand description
This type can perform linear interpolate from a to b with factor
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.