LlEuler2Rot
From Second Life Wiki
(Redirected from LSL llEuler2Rot)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: rotation llEuler2Rot( vector v );| 16 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a rotation representation of Euler Angles v.
| • vector | v |
Specification
The Euler angle vector (in radians) is converted to a rotation by doing the rotations around the 3 axes in Z, Y, X order. So llEuler2Rot(<1.0, 2.0, 3.0> * DEG_TO_RAD) generates a rotation by taking a vector pointing along the X axis, first rotating it 3 degrees around the global Z axis, then rotating the resulting vector 2 degrees around the global Y axis, and finally rotating that 1 degree around the global X axis.
Examples
default { state_entry() { vector input = <73.0, -63.0, 20.0> * DEG_TO_RAD; rotation rot = llEuler2Rot(input); llSay(0,"The Euler2Rot of "+(string)input+" is: "+(string)rot ); } }

