BezierGetLinearBoundingBox Method

Return the bounding box area for the supplied linear Bezier curve, aka a straight line.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2820.4317
C#
public static FArea GetLinearBoundingBox(
	FVector2 p0,
	FVector2 p1
)

Parameters

p0  FVector2
Reference to the starting point.
p1  FVector2
Reference to the ending point.

Return Value

FArea
Reference to the bounding box area of the provided linear Bezier curve, if legitimate. Otherwise, an empty rectangle.

See Also