Autodesk.AutoCAD.Geometry Namespace > CubicSplineCurve3d Class > CubicSplineCurve3d Constructor > CubicSplineCurve3d(Point3dCollection, Vector3d, Vector3d) Constructor
CubicSplineCurve3d.CubicSplineCurve3d(Point3dCollection, Vector3d, Vector3d) 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(
    points As Point3dCollection, 
    startDerivative As Vector3d, 
    endDerivative As Vector3d
)
C#
public CubicSplineCurve3d(
    Point3dCollection points, 
    Vector3d startDerivative, 
    Vector3d endDerivative
);
Parameters
Parameters 
Description 
Point3dCollection points 
Input interpolating points 
Vector3d startDerivative 
Input derivative at the beginning of spline 
Vector3d endDerivative 
Input derivative at the end of spline 
Links
   Comments?