LlFabs
Revision as of 01:49, 25 January 2007 by Strife Onizuka (talk | contribs)
- The correct title of this article is llFabs. The initial letter is shown capitalized due to technical restrictions.
SpecificationThis 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 | ||||||||||||
Examples<lsl> default { state_entry() { llSay(0,"The absolute value of -4.5 is: "+(string)llFabs(-4.5) ); } } </lsl> | ||||||||||||
Helper Functions<lsl> </lsl> | ||||||||||||
See Also | ||||||||||||
Notes |