Ceiling - Math
Jump to navigation
Jump to search
Member of: Math Script
Calculates the smallest integer greater than or equal to the passed in value.
Syntax[edit | edit source]
int Function Ceiling(float afValue) native global
Parameters[edit | edit source]
- afValue: The value to get the ceiling of.
Return Value[edit | edit source]
The ceiling of the passed-in value.
Examples[edit | edit source]
int x = Ceiling(2.1) ; x == 3
int y = Ceiling(5.9) ; y == 6