Skip to content

Instantly share code, notes, and snippets.

@pyramation
Created February 1, 2019 23:05
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 pyramation/712b94714e19b5cac8cade7f4434088f to your computer and use it in GitHub Desktop.
Save pyramation/712b94714e19b5cac8cade7f4434088f to your computer and use it in GitHub Desktop.
fit function
function fit(num, oldmin, oldmax, newmin, newmax) {
const ratio = (num - oldmin) / (oldmax - oldmin);
return newmin + ratio * (newmax - newmin);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment