Skip to content

Instantly share code, notes, and snippets.

@nicinabox
Last active November 15, 2016 18:09
Show Gist options
  • Save nicinabox/9990756a77453412fa5d6a91d006ea93 to your computer and use it in GitHub Desktop.
Save nicinabox/9990756a77453412fa5d6a91d006ea93 to your computer and use it in GitHub Desktop.
const scale = ([domainMin, domainMax], [rangeMin, rangeMax]) => (val) => {
return ((val - domainMin) / (domainMax - domainMin)) * (rangeMax - rangeMin) + rangeMin
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment