Enum LinearRingOrientation
- Namespace
- NetTopologySuite.Geometries
- Assembly
- NetTopologySuite.dll
An enumeration of ring orientation values
public enum LinearRingOrientation
Fields
CCW = -1
The orientation of the ring's coordinates is counter-clockwise.
CW = 1
The orientation of the ring's coordinates is clockwise.
Clockwise = 1
The orientation of the ring's coordinates is clockwise.
CounterClockwise = -1
The orientation of the ring's coordinates is counter-clockwise.
Default = -1
The default orientation of the rings coordinates. Set to CounterClockwise
DontCare = 0
The orientation of the rings coordinates does not matter.
LeftHandRule = -1
The orientation of the ring's coordinates follows the left-hand-rule, saying that if you follow the ring in the direction of its coordinates your left hand will be inside the ring.
RightHandRule = 1
The orientation of the ring's coordinates follows the right-hand-rule, saying that if you follow the ring in the direction of its coordinates your right hand will be inside the ring.