BezierGetLinearCurvePoint Method
Return the point along a linear Bezier curve, otherwise known as a
straight line, as indicated by t.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static FPoint GetLinearCurvePoint(
FPoint p0,
FPoint p1,
float t
)
Public Shared Function GetLinearCurvePoint (
p0 As FPoint,
p1 As FPoint,
t As Single
) As FPoint
No code example is currently available or this language may not be supported.
- p0 FPoint
-
Starting point.
- p1 FPoint
-
Ending point.
- t Single
-
Current progress, in the range between 0 and 1.
FPoint
The point along a linear bezier curve that is indicated by t.