static double lerp(double start, double stop, double amount) => (1.0 - amount) * start + amount * stop;