Usage

Min(x1 [, x2 [, ...]])

Returns the minimum of its arguments. Min(4, 2.1, 9, 42) will return 2.1.

Max(x1 [, x2 [, ...]])

Returns the maximum of its arguments. Max(4, 2.1, 9, 42) will return 42.

Clamp(val, low, high)

Returns the value of val when constrained to the range [low, high]. Examples: