pub trait Mix {
// Required method
fn mix(self, other: Self, t: f32) -> Self;
}Expand description
Mix trait for linear interpolation between two values.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Mix {
// Required method
fn mix(self, other: Self, t: f32) -> Self;
}Mix trait for linear interpolation between two values.