Difference between revisions of "LlVecMag"

From Second Life Wiki
Jump to navigation Jump to search
Line 34: Line 34:
</lsl>
</lsl>
|helpers
|helpers
|related={{LSLG|llRound}}<br/>{{LSLG|llFloor}}
|related={{LSLG|llVecNorm}}<br/>{{LSLG|llVecDist}}
|also
|also
|notes
|notes

Revision as of 20:53, 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 );