function lerp(a, b, t) { return (1 - t) * a + t * b; }
function lerp(A, B, t) { return A + (B - A) * t; }