pub trait Glerpable {
// Required method
fn glerp(&mut self, to: Self, lerp: f32, thresh: Self) -> bool;
}Expand description
Any type that implements necessary math traits for linear interpolation (lerp)
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.