GCurve.CubicSplineInterpolation<R> Method

Cubic spline interpolation with automatic tangents.
Public Shared Function CubicSplineInterpolation(Of  _ 
R As Point3D)( _ 
ByVal Q As IList(Of R), _ 
Optional ByVal cornerEnd As Boolean = false _ 
) As GCurve
This language is not supported or no code example is available.
public static GCurve CubicSplineInterpolation<R>( 
IList<R> Q
bool cornerEnd = false 

where R : Point3D
This language is not supported or no code example is available.

Type Parameters

R

Parameters

Q
IList<R>

The list of 3D points to interpolate

cornerEnd
bool

If true a corner may appear between the beginning and end of the curve, if false (default) the start and end tangents are parallel

Return Value

GCurve

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

.NET Framework

Supported in: 4.7.2

In this article

Definition