Skip to content

Instantly share code, notes, and snippets.

@BenOsodrac
Created February 29, 2020 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenOsodrac/75684ca2557ca86cafa87f905217c5bf to your computer and use it in GitHub Desktop.
Save BenOsodrac/75684ca2557ca86cafa87f905217c5bf to your computer and use it in GitHub Desktop.
function ease (v, pow=4) {
return 1 - Math.pow(1 - v, pow);
}
let easedStep = ease(i / frame);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment