Skip to content

Instantly share code, notes, and snippets.

@sylvia43
Created February 16, 2015 08:48
Show Gist options
  • Save sylvia43/14d9a6bbad7edcb2d34b to your computer and use it in GitHub Desktop.
Save sylvia43/14d9a6bbad7edcb2d34b to your computer and use it in GitHub Desktop.
long map(long x, long in_min, long in_max, long out_min, long out_max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment