Skip to content

Instantly share code, notes, and snippets.

@nicinabox
Last active November 15, 2016 18:09
Embed
What would you like to do?
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