ArcDirectionEnum Enumeration

Enumeration of allowable arc drawing directions.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public enum ArcDirectionEnum

Remarks

The arc direction is the flow of the edge of the arc from the specified starting point or angle to the ending point or angle. In Cartesian space, ArcDirectionEnum.Forward is a counterclockwise progression from the positive-going ray along the X-axis, while in Display space, the value ArcDirectionEnum.Forward represents a clockwise progression from the positive-going ray along the X-axis.

Members

None0 Arc direction not specified or unknown.
Forward1 The arc progresses in an increasing angular path from start to finish.
Increasing1 The arc progresses in an increasing angular path from start to finish. This value is compatible with Forward.
Reverse2 The arc progresses in a decreasing angular path from start to finish.
Decreasing2 The arc progresses is a decreasing angular path from start to finish. This value is compatible with Reverse.

See Also