Difference between revisions of "LlAbs"

From Second Life Wiki
Jump to navigation Jump to search
m (LlAbs moved to LSL llAbs)
Line 1: Line 1:
{{LSLFunctionAll
|func=llAbs
|func_id=6
|func_sleep=0.0
|func_energy=10.0
|func_footnote
|p1_type=integer
|p1_name=val
|p1_desc
|p2_type|p2_name|p2_desc
|p3_type|p3_name|p3_desc
|p4_type|p4_name|p4_desc
|p5_type|p5_name|p5_desc
|p6_type|p6_name|p6_desc
|p7_type|p7_name|p7_desc
|p8_type|p8_name|p8_desc
|p9_type|p9_name|p9_desc
|p10_type|p10_name|p10_desc
|p11_type|p11_name|p11_desc
|p12_type|p12_name|p12_desc
|return_type=integer
|return_text=that is the positive version of val.
|spec
|caveats
|examples=
<lsl>
default
{
    state_entry()
    {
        llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
    }
}
</lsl>
|helpers
|also=[http://en.wikipedia.org/wiki/Absolute_value Wikipedia - Absolute value]]
|notes
}}
  {{lowercase|llAbs}}
  {{lowercase|llAbs}}
__NOTOC__
__NOTOC__
Line 51: Line 90:
== Examples ==
== Examples ==
<div style="padding: 0.5em">
<div style="padding: 0.5em">
<lsl>
default
{
    state_entry()
    {
        llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
    }
}
</lsl>


</div>
</div>

Revision as of 20:03, 25 January 2007

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

   'also' Tag Removed

(Please use 'also_header','also_events','also_functions','also_articles', or 'also_footer')

Summary

Function: integer llAbs( integer val );

Returns an integer that is the positive version of val.

• integer val

Examples

<lsl> default {

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

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function integer llAbs( integer val );
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.

Energy: 10.0
Sleep: 0.0
Function ID: 6

Caveats

  • None Known

Examples

See Also

Notes