Skip to content

Instantly share code, notes, and snippets.

@AlainBarrios
Last active September 24, 2019 10:55
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 AlainBarrios/6f19e6538c5f12de1b2ca786e4561842 to your computer and use it in GitHub Desktop.
Save AlainBarrios/6f19e6538c5f12de1b2ca786e4561842 to your computer and use it in GitHub Desktop.
const map = (value, inMin, inMax, outMin, outMax) => {
return ( (value - inMin) / ( inMax - inMin ) * ( outMax - outMin ) ) + outMin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment