llVecMag

From Second Life Wiki
Revision as of 20:50, 25 January 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

   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 );