Utility.HermiteSpline Method

Computes a point on the Hermite Spline.
Public Shared Function HermiteSpline( _ 
ByVal p0 As Point2D, _ 
ByVal m0 As Vector2D, _ 
ByVal p1 As Point2D, _ 
ByVal m1 As Vector2D, _ 
ByVal t As Double
) As Point2D
This language is not supported or no code example is available.
public static Point2D HermiteSpline( 
Point2D p0
Vector2D m0
Point2D p1
Vector2D m1
double t 
)
This language is not supported or no code example is available.

Parameters

p0
Point2D

Start point

m0
Vector2D

Start tangent

p1
Point2D

End point

m1
Vector2D

End tangent

t
double

Evaluation parameter

Return Value

Point2D

The 2D point on the curve.

.NET Framework

Supported in: 4.8

In this article

Definition