llVecNorm

From Second Life Wiki
Revision as of 03:14, 11 August 2009 by Zai Lynch (talk | contribs) (changed it back to |Return_text: since there's only one normalized vector)
Jump to navigation Jump to search

Summary

Function: vector llVecNorm( vector vec );

Returns the vector that is vec normalized (a unit vector sharing the same direction as vec).

• vector vec Any valid vector

Functionally equivalent to: vec / llVecMag(vec))

Caveats

  • Will return <0.0, 0.0, 0.0> when <0.0, 0.0, 0.0> is given as input.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   state_entry()
   {
       vector input = <1.0,2.0,3.0>;
       llSay(0,"The unit vector on "+(string)input+" is: "+(string)llVecNorm(input) );
   }

}

</lsl>

See Also

Functions

•  llVecMag
•  llVecDist

Deep Notes

Search JIRA for related Issues

Signature

function vector llVecNorm( vector vec );