pub trait Lerp {
// Required method
fn lerp(&self, other: &Self, scalar: f32) -> Self;
}
Expand description
Describes a trait that can be linearly interpolate between two points.
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.