CADability dotNET
Adds a curve to this path. It is checked whether the curve to add can be connected to the start or endpoint of this path. If necessary the curve will be reversed. If it cannot be connected false will be returned.

Namespace: CADability.GeoObject
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public bool Add(
	ICurve ToAdd
)
Visual Basic
Public Function Add ( _
	ToAdd As ICurve _
) As Boolean
Visual C++
public:
bool Add(
	ICurve^ ToAdd
)

Parameters

ToAdd
Type: CADability.GeoObject..::..ICurve
curve to add

Return Value

true on success, false on failure

See Also