static double lerp(double start, double end, double percent) { return (start + percent * (end - start)); }