Ceiling - Math

From the CreationKit Wiki
Revision as of 08:57, 12 September 2012 by imported>JLundin
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

See Also[edit | edit source]