Difference between revisions of "LlFabs"

From Second Life Wiki
Jump to navigation Jump to search
Line 35: Line 35:
|helpers
|helpers
|related=
|related=
* {{LSLG|llAbs}}
* {{LSLG|llAbs}}
|also_articles=
|also_articles=
* [http://en.wikipedia.org/wiki/Absolute_value Wikipedia - Absolute value]
* [http://en.wikipedia.org/wiki/Absolute_value Wikipedia - Absolute value]
|notes
|notes
}}
}}

Revision as of 17:15, 27 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.

Summary

Function: float llFabs( float val );

Returns a float that is the positive version of val.

• float val Any valid float value

Examples

<lsl> default {

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

}

</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function float llFabs( float val );