Go to: Synopsis. Return value. Related. MEL examples.
ceil
float
ceil is undoable, NOT queryable, and NOT editable.
Returns the smallest integer value that is not less than the argument.float | Ceiling value |
ceil 2; // Result: 2 // ceil 2.42; // Result: 3 // ceil -2.82; // Result: -2 //