ClampClamp#func Clamp(number, lower, upper int) intClamps number within the inclusive lower and upper bounds.:gmath.Clamp(-10, -5, 5) // => -5gmath.Clamp(10, -5, 5) // => 5CopyClampFloat#gmath.ClampFloat(-10, -5, 5) // => -5.0gmath.ClampFloat(10, -5, 5) // => 5.0Copy