NurbsBase.ChordLengthParametrization<T> (Int32, Int32, IList<T>, out Double(), out Double()) Method

Computes chord length parameterization from a vector of points.
Public Shared Function ChordLengthParametrization(Of  _ 
T As Point3D)( _ 
ByVal from As Integer, _ 
ByVal to As Integer, _ 
ByVal Q As IList(Of T), _ 
ByRef distances As Double(), _ 
ByRef ub As Double() _ 
) As Double
This language is not supported or no code example is available.
public static double ChordLengthParametrization<T>( 
int from
int to
IList<T> Q
out double[] distances
out double[] ub 

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

Type Parameters

T

Parameters

from
int

Start index

to
int

End index

Q
IList<T>

The list of 3D points

distances
double[]

The length of each chord

ub
double[]

The resulting length parameterization

Return Value

double

The total chord length.

.NET Framework

Supported in: 4.8

In this article

Definition