mathCeil

Rounds a number up to the nearest integer. Takes value (number). Returns the ceiling value.

Mathematics

Parameters & Returns

Parameters

value Double

Returns

Double

Quick Summary

Rounds a number up to the nearest integer. Takes value (number). Returns the ceiling value.

Technical Exegesis...

Returns the smallest integer greater than or equal to the input value. This always rounds towards positive infinity.

Examples: mathCeil(3.2) returns 4.0, mathCeil(-2.7) returns -2.0

Example

Example.bam
; No example implemented yet