Skip to content

Instantly share code, notes, and snippets.

@vool
Last active December 19, 2015 21:59
Show Gist options
  • Select an option

  • Save vool/6024566 to your computer and use it in GitHub Desktop.

Select an option

Save vool/6024566 to your computer and use it in GitHub Desktop.
Handy js functions
function map_range(value, low1, high1, low2, high2) {
return low2 + (high2 - low2) * (value - low1) / (high1 - low1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment