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.
Returns the integer value that is the nearest to fval. If the decimal part is exactly .5, it will be rounded up (towards positive infinity).
integer i; i = llRound(-3.3); // i will become -3 i = llRound(3.3); // i will become 3 i = llRound(3.5); // i will become 4 i = llRound(-3.5); // i will become -3 i = llRound(-99.6); // i will become -100