CircleGetArcBoundingBox(FVector2, FVector2, FVector2, 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.2820.4317
C#
public static FArea GetArcBoundingBox(
	FVector2 center,
	FVector2 start,
	FVector2 end,
	WindingOrientationEnum winding,
	DrawingSpaceEnum drawingSpace = DrawingSpaceEnum.Display
)

Parameters

center  FVector2
Reference to the circle center.
start  FVector2
Reference to the start point.
end  FVector2
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