Difference between revisions of "LlVecMag"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{llVecMag
{{LSLFunctionAll
|func=llCeil
|func=llVecMag
|func_id=10
|func_id=10
|func_sleep=0.0
|func_sleep=0.0

Revision as of 20:48, 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.

Summary

Function: float llVecMag( vector vec );

Returns a float that is the magnitude of the vector (the distance from vec to <0.0, 0.0, 0.0>).

• vector vec

Examples

<lsl> default {

   state_entry()
   {
       vector input = <1.0,2.0,3.0>;
       llSay(0,"The magnitude of "+(string)input+" is: "+(string)llVecMag(input) );
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function float llVecMag( vector vec );