Difference between revisions of "LlAbs"

From Second Life Wiki
Jump to navigation Jump to search
Line 66: Line 66:
</div>
</div>
|}
|}
[[Category:LSL_Functions]]
[[Category:LSL_Math]]

Revision as of 23:26, 24 January 2007

The correct title of this article is llAbs. The initial letter is shown capitalized due to technical restrictions.


Returns the absolute value of the integer passed to it.

integer llAbs( integer number);

  • number - Any valid integer value

Specification

This function returns the absolute value passed to it. Basically, it removes the negative sign, on the number if there is one. If the parameter is a positive one, it just returns it

Caveats

  • None Known

Examples

<lsl> default {

   state_entry()
   {
       llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
   }

} </lsl>

See Also

Notes