Last active
October 15, 2021 13:08
-
-
Save b-g/e97038401196d7704bfc to your computer and use it in GitHub Desktop.
map function (á la processing.org)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function map(value, istart, istop, ostart, ostop) { | |
return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment