Skip to content

Instantly share code, notes, and snippets.

@pizza3
Created June 19, 2020 16:11
Show Gist options
  • Select an option

  • Save pizza3/1308610233b3222bf40462f06a55ad3f to your computer and use it in GitHub Desktop.

Select an option

Save pizza3/1308610233b3222bf40462f06a55ad3f to your computer and use it in GitHub Desktop.
Interpolate
Array.prototype.interpolate = function(n, start1, stop1, start2, stop2) {
return ((n-start1)/(stop1-start1))*(stop2-start2)+start2;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment