pub fn lerp64(x: f64, a: f64, b: f64) -> f64
Expand description

Apply 64bit linear interpolation between the value a and b.

  • a - value at x=0.0
  • b - value at x=1.0
  • x - value between 0.0 and 1.0 to blend between a and b.