Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / HermiteSpline Method
Start point
Start tangent
End point
End tangent
Evaluation parameter

In This Topic
    HermiteSpline Method
    In This Topic
    Computes a point on the Hermite Spline.
    Syntax
    'Declaration
     
    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
    public static Point2D HermiteSpline( 
       Point2D p0,
       Vector2D m0,
       Point2D p1,
       Vector2D m1,
       double t
    )

    Parameters

    p0
    Start point
    m0
    Start tangent
    p1
    End point
    m1
    End tangent
    t
    Evaluation parameter

    Return Value

    The 2D point on the curve.
    See Also