CircleGetQuadrantsOccupied(Single, Single, ArcDirectionEnum) Method

Return an array containing the ordinal quadrant positions of the quadrants occupied by the specified arc.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static int[] GetQuadrantsOccupied(
	float startAngle,
	float endAngle,
	ArcDirectionEnum windingDirection
)

Parameters

startAngle  Single
The starting angle, in radians.
endAngle  Single
The ending angle, in radians.
windingDirection  ArcDirectionEnum
The winding direction taken by the arc.

Return Value

Int32
Reference to an array of ordinal quadrant positions occupied by the arc, if any where found. Otherwise, an empty array.

Remarks

In this version, quadrant 0 is the area in +X, +Y, quadrant 1 is -X, +Y, quadrant 2 is -X, -Y, and quadrant 3 is +X, -Y.

See Also