Constructs an interpolation cubic spline going through the fit points within tolerance specified by the tolerance object. The constructed spline has start and end derivative specified by the input data.
Public Sub New( fitPoints As Point2dCollection, startDerivative As Vector2d, endDerivative As Vector2d, tolerance As Tolerance )
public CubicSplineCurve2d( Point2dCollection fitPoints, Vector2d startDerivative, Vector2d endDerivative, Tolerance tolerance );
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 |
Tolerance tolerance |
Input tolerance object |
Comments? |