This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
WordGame-JS/Snowman-Animated/scripts/system.js

3 lines
45 B
JavaScript
Raw Permalink Normal View History

2024-05-08 12:41:16 -05:00
function lerp(a,b,t){
return a+t*(b-a);
}