You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
The float value to be rounded up.
Returns the nearest integer value that is greater than or equal to fval
.
integer i; i = llCeil(3.0); // Sets i to 3, which is greater or equal to 3.0 (in this case, equal). i = llCeil(3.001); // Sets i to 4, not 3, because 3 is less than 3.001 and the result must be greater or equal. i = llCeil(3.999); // Sets i to 4 i = llCeil(4.0); // Sets i to 4 i = llCeil(-3.0); // Sets i to -3 i = llCeil(-3.001); // Sets i to -3, which is greater or equal to -3.001 (in this case, greater) i = llCeil(-3.999); // Sets i to -3 i = llCeil(-4.0); // Sets i to -4