pub trait Easing:
Debug
+ Send
+ Sync
+ 'static {
// Required method
fn ease(&self, progress: f32) -> f32;
}
Expand description
Performs easing for value interpolation.
pub trait Easing:
Debug
+ Send
+ Sync
+ 'static {
// Required method
fn ease(&self, progress: f32) -> f32;
}
Performs easing for value interpolation.