Skip to content

Instantly share code, notes, and snippets.

@nkint
Last active April 12, 2018 15:29
Show Gist options
  • Save nkint/a1486134930db6b1415c1a9d42a5f20d to your computer and use it in GitHub Desktop.
Save nkint/a1486134930db6b1415c1a9d42a5f20d to your computer and use it in GitHub Desktop.
map P5
/*
FAMOUS MAP FUNCITON FROM PROCESSING.ORG PROGRAMMING LANGUAGE
Taken from: https://stackoverflow.com/a/17135426
*/
export 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