Skip to content

Instantly share code, notes, and snippets.

@Vonflaken
Created September 27, 2019 16:20
Show Gist options
  • Select an option

  • Save Vonflaken/9136369887df557e52ab7717c26c1123 to your computer and use it in GitHub Desktop.

Select an option

Save Vonflaken/9136369887df557e52ab7717c26c1123 to your computer and use it in GitHub Desktop.
const vfmath : any = {
clamp(value : number, min : number, max : number) : number
{
let clamped : number = value
if (value > max) clamped = max
else if (value < min) clamped = min
return clamped
}
}
export default vfmath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment