BezierGetCubicCurvePoint Method
Return the natural point along a cubic Bezier curve as indicated by t.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2820.4317
public static FVector2 GetCubicCurvePoint(
FVector2 p0,
FVector2 p1,
FVector2 p2,
FVector2 p3,
float t
)
Public Shared Function GetCubicCurvePoint (
p0 As FVector2,
p1 As FVector2,
p2 As FVector2,
p3 As FVector2,
t As Single
) As FVector2
No code example is currently available or this language may not be supported.
- p0 FVector2
-
Starting point.
- p1 FVector2
-
Control point 1.
- p2 FVector2
-
Control point 2.
- p3 FVector2
-
Ending point.
- t Single
-
Current progress, in the range between 0 and 1.
FVector2
The point along a cubic bezier curve that is indicated by t.