BezierGetQuadraticCurvePoint Method

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

Definition

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

Parameters

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

Return Value

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

See Also