Clamp

Math
Both Server and Client
Both Mobile and PC

Limit the range of the target value and obtain the value in the middle of the three input parameters; its function is to limit the target value to the specified range. If the target value is smaller than the minimum value, it returns the minimum value; if

Declaration

func Clamp(value Number, min Number, max Number) Number
go

Parameters

Input

Name Type Description
Value Number Target value
Min Number Minimum value of the limited range
Max Number Maximum value of the limited range

Return

Type Description
Number Return value after restriction