Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / CubicSplineInterpolation Method / CubicSplineInterpolation<R>(IList<R>,Boolean) Method
The list of 3D points to interpolate
If true a corner may appear between the beginning and end of the curve, if false (default) the start and end tangents are parallel

In This Topic
    CubicSplineInterpolation<R>(IList<R>,Boolean) Method
    In This Topic
    Cubic spline interpolation with automatic tangents.
    Syntax
    'Declaration
     
    Public Overloads Shared Function CubicSplineInterpolation(Of R As Point3D)( _
       ByVal Q As IList(Of R), _
       Optional ByVal cornerEnd As Boolean _
    ) As Curve
    public static Curve CubicSplineInterpolation<R>( 
       IList<R> Q,
       bool cornerEnd
    )
    where R: Point3D

    Parameters

    Q
    The list of 3D points to interpolate
    cornerEnd
    If true a corner may appear between the beginning and end of the curve, if false (default) the start and end tangents are parallel

    Type Parameters

    R

    Return Value

    The interpolated curve if the operation succeeded, null/Nothing otherwise.
    See Also