Min - Math
Jump to navigation
Jump to search
Member of: Math Script
Returns the smaller of the two values passed in.
Syntax[edit | edit source]
float Function Min(float afValue1, float afValue2) global
Parameters[edit | edit source]
- afValue1: The first value.
- afValue2: The second value.
Return Value[edit | edit source]
The smaller of the two values
Examples[edit | edit source]
int a = Min(10, 15) ; a == 10
int b = Min(-1.5, -3) ; b == -3