Description
Constructs a composite curve from the list of input curves. The input curves should be connected at their endpoints, although no check of this is made by the constructor. That is, the start point of each curve in the list (excluding the first curve) should be equal to the endpoint of the previous curve in the list.
Visual Basic
Public Sub New( curves As Curve3d[] )
C#
public CompositeCurve3d( Curve3d\[\] curves );
Parameters
Parameters | Description |
---|---|
curveList | Input list of curves in the composite curve |