lerp
Functionlerp(start: int | float, end: int | float, t: float) -> float
Linear interpolation: start + (end - start) * t. Extrapolates outside [0, 1].
lerp(start: int | float, end: int | float, t: float) -> float
Linear interpolation: start + (end - start) * t. Extrapolates outside [0, 1].