Curve.CubicSplineInterpolation Method

Cubic spline interpolation.
Public Shared Function CubicSplineInterpolation( _ 
ByVal Q As IList(Of Point3D), _ 
ByVal startTang As Vector3D, _ 
ByVal endTang As Vector3D
) As Curve
This language is not supported or no code example is available.
public static Curve CubicSplineInterpolation( 
IList<Point3D> Q
Vector3D startTang
Vector3D endTang 
)
This language is not supported or no code example is available.

Parameters

Q
IList<Point3D>

The list of 3D points to interpolate

startTang
Vector3D

The start 3D tangent vector, magnitude matters (total chord length of the point set can be a reasonable value).

endTang
Vector3D

The end 3D tangent vector, magnitude matters (total chord length of the point set can be a reasonable value).

Return Value

Curve

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

.NET Framework

Supported in: 4.8

In this article

Definition