The sort order of coordinates for a lexicographical point sort.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public enum SortOrder
Visual Basic (Declaration)
Public Enumeration SortOrder
Visual C++
public enum class SortOrder

Members

Member nameDescription
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.

See Also