LlRot2Euler
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Contents |
Summary
Function: vector llRot2Euler( rotation quat );| 15 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a vector that is the Euler representation (roll, pitch, yaw) of quat.
| • rotation | quat | – | Any valid rotation |
Caveats
- Angles greater than PI (180 degrees) are returned as negative angles.
Examples
default { state_entry() { rotation input = <0.0, 1.0, 0.0, 0.0>;//not advised to make your own quaternion llSay(0,"The Rot2Euler of "+(string)input+" is: "+(string)llRot2Euler(input) ); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

