fish_lib/utils/
math.rs

1pub fn float_interpolate(a: f32, b: f32, factor: f32) -> f32 {
2    a + ((b - a) * factor)
3}