Description
Constructs a composite curve from the list of input curves. The input curves should be connected at their endpoints. 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. No check of this is made by the constructor.
Visual Basic
Public Sub New( curves As Curve2d[] )
C#
public CompositeCurve2d( Curve2d\[\] curves );
Parameters
Parameters | Description |
---|---|
curveList | Input list of curves forming a composite curve |