Skip to content

Instantly share code, notes, and snippets.

@YuryScript
Last active April 11, 2021 16:39
Show Gist options
  • Select an option

  • Save YuryScript/1a4eb8bba8b41ade54b73340179a6728 to your computer and use it in GitHub Desktop.

Select an option

Save YuryScript/1a4eb8bba8b41ade54b73340179a6728 to your computer and use it in GitHub Desktop.
[JS] Mix (or lerp) function
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