RotationOrder Enumeration |
Different ways to apply rotation (order in which we rotate the different axis).
Namespace:
GeonBit.Core
Assembly:
GeonBit (in GeonBit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public enum RotationOrder
Members
| Member name | Value | Description |
---|
| RotateXYZ | 0 |
Rotate by axis order X, Y, Z.
|
| RotateXZY | 1 |
Rotate by axis order X, Z, Y.
|
| RotateYXZ | 2 |
Rotate by axis order Y, X, Z.
|
| RotateYZX | 3 |
Rotate by axis order Y, Z, X.
|
| RotateZXY | 4 |
Rotate by axis order Z, X, Y.
|
| RotateZYX | 5 |
Rotate by axis order Z, Y, X.
|
See Also