You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
This is an old revision of the document!
The float value to be rounded up.
The float value that is the nearest integer greater 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