Autodesk.AutoCAD.Geometry Namespace > CubicSplineCurve2d Class > CubicSplineCurve2d Constructor > CubicSplineCurve2d(Point2dCollection, Vector2d, Vector2d) Constructor
CubicSplineCurve2d.CubicSplineCurve2d(Point2dCollection, Vector2d, Vector2d) Constructor
Description

Constructs an interpolation cubic spline going through the fit points. The constructed spline has start and end derivative specified by the input data.

Visual Basic
Public Sub New(
    fitPoints As Point2dCollection, 
    startDerivative As Vector2d, 
    endDerivative As Vector2d
)
C#
public CubicSplineCurve2d(
    Point2dCollection fitPoints, 
    Vector2d startDerivative, 
    Vector2d endDerivative
);
Parameters
Parameters 
Description 
Point2dCollection fitPoints 
Input interpolating points 
Vector2d startDerivative 
Input derivative at the beginning of spline 
Vector2d endDerivative 
Input derivative at the end of spline 
Links
   Comments?