inElastic

This function extents past 0 and 1 for values of t between 0 and 1
Parameters
- t:f32
- f32
Source
Implementation
pub fn inElastic(t: f32) f32 {
return 1 - outElastic(1 - t);
}
This function extents past 0 and 1 for values of t between 0 and 1
Source
pub fn inElastic(t: f32) f32 {
return 1 - outElastic(1 - t);
}