-
Notifications
You must be signed in to change notification settings - Fork 7
Unpack Quaternion Array
Ryan Porter edited this page Feb 25, 2018
·
2 revisions
Unpacks an array of quaternions into individual elements, expressed as X, Y, Z, and W components, or axis/angle pairs.
| Attribute Name | Description | Attribute Type |
|---|---|---|
| inputQuat (iq) | An array of quaternions. | quatArray |
| outputQuat (oq) | The individual quaternion values from the inputQuat array. |
double4[] |
| outputQuatX (oqx) | The X component of outputQuat. |
double |
| outputQuatY (oqy) | The Y component of outputQuat. |
double |
| outputQuatZ (oqz) | The Z component of outputQuat. |
double |
| outputQuatW (oqw) | The W component of outputQuat. |
double |
| outputX (ox) | The X components of inputQuat. |
doubleArray |
| outputY (oy) | The Y components of inputQuat. |
doubleArray |
| outputZ (oz) | The Z components of inputQuat. |
doubleArray |
| outputW (ow) | The W components of inputQuat. |
doubleArray |
| outputAxis (oax) | The pivot axes of inputQuat. |
vectorArray |
| outputAngle (oa) | The rotation around outputAxis of inputQuat. |
angleArray |