BezierGetCubicCurvePoint Method
Return the natural point along a cubic Bezier curve as indicated by t.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static FPoint GetCubicCurvePoint(
FPoint p0,
FPoint p1,
FPoint p2,
FPoint p3,
float t
)
Public Shared Function GetCubicCurvePoint (
p0 As FPoint,
p1 As FPoint,
p2 As FPoint,
p3 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
-
Control point 1.
- p2 FPoint
-
Control point 2.
- p3 FPoint
-
Ending point.
- t Single
-
Current progress, in the range between 0 and 1.
FPoint
The point along a cubic bezier curve that is indicated by t.