This .NET enum wraps the AcGiOrientationType ObjectARX enum. It gives the current orientation type for vertices. The orientation type indicates the direction the vertices in a mesh or shell appear to follow when viewed in order while looking down the normal axis towards any given vertex. Essentially the orientation type defines the normal's positive or negative direction at the vertices.
Public Enum OrientationType Clockwise = 1 CounterClockwise = -1 NoOrientation = 0 End Enum
public enum OrientationType { Clockwise = 1, CounterClockwise = -1, NoOrientation = 0 }
Members |
Description |
Clockwise = 1 |
Clockwise orientation. |
CounterClockwise = -1 |
Counter-clockwise orientation. |
NoOrientation = 0 |
No orientation. |
Comments? |