1use crate::interpreter::evaluator::Evaluator; 2 3pub fn std_lerp(_: &mut Evaluator, x: f64, y: f64, t: f64) -> f64 { 4 x + (y - x) * t 5}