The sort order of coordinates for a lexicographical point sort.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.6.0.0 (1.6.0.0)
Syntax
| C# |
|---|
public enum SortOrder |
| Visual Basic (Declaration) |
|---|
Public Enumeration SortOrder |
| Visual C++ |
|---|
public enum class SortOrder |
Members
| Member name | Description | |
|---|---|---|
| XYZ | Sort by x, then by y and finally by z-coordinate. | |
| XZY | Sort by x, then by z and finally by y-coordinate. | |
| YXZ | Sort by y, then by x and finally by z-coordinate. | |
| YZX | Sort by y, then by z and finally by x-coordinate. | |
| ZXY | Sort by z, then by x and finally by y-coordinate. | |
| ZYX | Sort by z, then by y and finally by x-coordinate. |