llRot2Axis

From Second Life Wiki
Revision as of 08:37, 16 March 2009 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: vector llRot2Axis( rotation rot );

Returns a vector the rotation axis represented by rot

• rotation rot

Use in conjunction with llRot2Angle.
To undo use llAxisAngle2Rot.

Examples

See Also

Functions

•  llRot2Angle
•  llAxisAngle2Rot
•  llRot2Left
•  llRot2Fwd
•  llRot2Up

Articles

•  Slerp

Deep Notes

<lsl>vector llRot2Axis(rotation a) {

   if(a.s < 0)
       return -llVecNorm(<a.x, a.y, a.z>);
   return llVecNorm(<a.x, a.y, a.z>)

}</lsl>

<lsl>vector llRot2Axis(rotation a) {

   return llVecNorm(<a.x, a.y, a.z>) * (1

Search JIRA for related Issues

Signature

function vector llRot2Axis( rotation rot );