LERP (linear interpolation)
Last updated: December 9, 2022
Introduction
Notes
per-frame lerp: You are constantly interpolating some set % distance closer. a = lerp(a, b, 0.5);
tween lerp: You are premediated with known start/end values and duration to reach it. x = lerp(a, b, progress);
“Damping”