CircleGetArcBoundingBox(FPoint, FPoint, FPoint, WindingOrientationEnum, DrawingSpaceEnum) Method

Return a reference to the bounding box for a circular arc being measured by center point, start point, and end point, with a winding direction.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2613.4238
C#
public static FArea GetArcBoundingBox(
	FPoint center,
	FPoint start,
	FPoint end,
	WindingOrientationEnum winding,
	DrawingSpaceEnum drawingSpace = DrawingSpaceEnum.Display
)

Parameters

center  FPoint
Reference to the circle center.
start  FPoint
Reference to the start point.
end  FPoint
Reference to the end point.
winding  WindingOrientationEnum
The winding direction taken to create the arc.
drawingSpace  DrawingSpaceEnum  (Optional)
The drawing space in which the winding direction applies. Default = Display.

Return Value

FArea
Reference to the bounding box occupied by the specified arc, if legitimate values were presented. Otherwise, a empty rectangle.

See Also