Skip to content

Instantly share code, notes, and snippets.

@b-g
Last active October 15, 2021 13:08
Show Gist options
  • Save b-g/e97038401196d7704bfc to your computer and use it in GitHub Desktop.
Save b-g/e97038401196d7704bfc to your computer and use it in GitHub Desktop.
map function (á la processing.org)
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