BezierGetQuadraticCurvePoint Method

Return the point along a cubic Bezier curve as indicated by t.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2820.4317
C#
public static FVector2 GetQuadraticCurvePoint(
	FVector2 p0,
	FVector2 p1,
	FVector2 p2,
	float t
)

Parameters

p0  FVector2
Starting point.
p1  FVector2
Control point 1.
p2  FVector2
Ending point.
t  Single
Current progress, in the range between 0 and 1.

Return Value

FVector2
The point along a cubic Bezier curve that is indicated by t.

See Also