llEuler2Rot

From Second Life Wiki
Revision as of 16:44, 12 September 2007 by Ralph Doctorow (talk | contribs)
Jump to navigation Jump to search

Summary

Function: rotation llEuler2Rot( vector v );

Returns a rotation representation of Euler Angles v.

• vector v

Examples

default
{
    state_entry()
    {
        vector input = <73.0, -63.0, 20.0> * DEG_TO_RAD;//not advised to make your own quaternion
        llSay(0,"The Euler2Rot of "+(string)input+" is: "+(string)llEuler2Rot(input) );
    }
}

See Also

Functions

•  llRot2Euler

Articles

•  "Wikipedia logo"Euler_Angles

Deep Notes

Search JIRA for related Issues

Signature

function rotation llEuler2Rot( vector v );