Last active
April 11, 2021 16:39
-
-
Save YuryScript/1a4eb8bba8b41ade54b73340179a6728 to your computer and use it in GitHub Desktop.
[JS] Mix (or lerp) function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function mix(a, b, amount) { | |
| return a + amount * (b - a) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment