TraversalOrderType Enumeration |
Defines the order of traversal directions.
Namespace: RAYLASE.Marker.CommonAssembly: RAYLASE.Marker.Common (in RAYLASE.Marker.Common.dll) Version: 2.19.0
Syntaxpublic enum TraversalOrderType
MembersMember name | Value | Description |
---|
XYZ | 0 |
Traverse along X axis, then Y axis, and finally Z axis.
|
XZY | 1 |
Traverse along X axis, then Z axis, and finally Y axis.
|
YXZ | 2 |
Traverse along Y axis, then X axis, and finally Z axis.
|
YZX | 3 |
Traverse along Y axis, then Z axis, and finally X axis.
|
ZXY | 4 |
Traverse along Z axis, then X axis, and finally Y axis.
|
ZYX | 5 |
Traverse along Z axis, then Y axis, and finally X axis.
|
See Also