BezierGetLinearCurvePoint Method

Return the point along a linear Bezier curve, otherwise known as a straight line, as indicated by t.

Definition

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

Parameters

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

Return Value

FPoint
The point along a linear bezier curve that is indicated by t.

See Also