float Lerp(float a, float b, float t) { return a + (b - a) * t; }
float Lerp(float min, float max, float x) { return min - (min - max) * x; }