Overload List
Method | Description |
---|---|
![]() | Default constructor. Creates a composite that consists of one curve that is a line segment from (0,0,0) to (1,0,0). |
![]() | Constructs a copy of the input composite curve. Each of the component curves is copied and the constructed composite contains a list of pointers to these copies and not to the original component curves. |
![]() | 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. |
![]() | 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.The number of entries in isOwnerOfCurves must be the same as the number of entries in curveList. Each entry in isOwnerOfCurves specifies whether the corresponding curve in curveList should be deleted when this composite is deleted. If the entry in isOwnerOfCurves is... more |