static double lerpAngle(double from, double to, double t) { final diff = normalizeAngle(to - from); return from + diff * t; }