Thanks!   Here are two other functions that you can use with normalize. I consider them to be essential, and include them with every project I work on.   Lerp I know I've mentioned this one before, but here it is again. function lerp(min, max, ratio) { return min + (max - min) * ratio; } Does the same thing as a linear tween. A tween gets its progress value by normalizing time. You can see that it will give you the same results. See the Pen e9b1ff54efd541b1bb0be4be0
    • Like
    6