Skip to content

Instantly share code, notes, and snippets.

@tmathews
Created April 1, 2014 20:14
Show Gist options
  • Save tmathews/9922190 to your computer and use it in GitHub Desktop.
Save tmathews/9922190 to your computer and use it in GitHub Desktop.
Clamp
function clamp ( value, min, max ) {
return Math.max(min, Math.min(value, max));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment