CircularArc
Base Type: Segment
A class for a portion of a circle that connects two points.
Property |
Type |
Description |
---|---|---|
CenterPoint |
Midpoint of the arc. | |
FromAngle |
double |
The angle, measured from a horizontal line through this circular arc's center point, that defines where this arc starts. |
FromAngleSpecified |
bool |
Indicates if FromAngle is specified. |
IsCounterClockwise |
bool |
Indicates if this circular is oriented counter-clockwise from its 'from' point to its 'to' point. |
IsLine |
bool |
Indicates if the arc has degenerated to a line (radius is infinite). |
IsMinor |
bool |
Indicates whether this circular arc is a minor arc or a major arc. |
ToAngle |
double |
The angle, measured from a horizontal line through this circular arc's center point, that defines where this arc ends. |
ToAngleSpecified |
bool |
Indicates if ToAngle is specified. |
Remarks
This is an object that describes a portion of a circle or a complete circle. In geometric terms, a CircularArc is a special case of an EllipticArc, where the major and minor axes are equal.