CircleGetArcBoundingBox(FVector2, FVector2, FVector2, ArcDirectionEnum) 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,
	ArcDirectionEnum winding
)

Parameters

center  FVector2
Reference to the circle center.
start  FVector2
Reference to the start point.
end  FVector2
Reference to the end point.
winding  ArcDirectionEnum
The winding direction taken to create the arc.

Return Value

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

See Also