(start: f32, end: f32, value: f32)
| 138 | |
| 139 | #[inline] |
| 140 | pub fn ilerp(start: f32, end: f32, value: f32) -> f32 { |
| 141 | ilerp_core(start, end, value) |
| 142 | } |
| 143 | |
| 144 | #[inline] |
| 145 | pub fn remap(in_min: f32, in_max: f32, out_min: f32, out_max: f32, value: f32) -> f32 { |