Difference between revisions of "User:SignpostMarv Martin/Sandbox/llAbs"
Jump to navigation
Jump to search
m (minor tweaks) |
|||
Line 10: | Line 10: | ||
llAbs((integer)-7.99); //returns 7</pre></code></div> | llAbs((integer)-7.99); //returns 7</pre></code></div> | ||
[[Category:Math]] | <!--[[Category:Math]]--> |
Latest revision as of 16:45, 10 February 2007
llAbs returns the distance of the integer val from 0. This function will be useful if the result of an operation or function is not guaranteed to be a positive integer or negative integer.
llFabs is the equivalent function to use when the result of an operation or function is known to be always or occasionally a float, although the result of such an operation or function could be typecast to an integer
Examples
llAbs(-5); //returns
llAbs(3); // returns 3
llAbs((integer)-7.99); //returns 7