CADability dotNET
Connect two curves: the endpoint of the first curve with the startpoint of the second curve.

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

Syntax

C#
public static bool Connect(
	ICurve2D first,
	ICurve2D second
)
Visual Basic
Public Shared Function Connect ( _
	first As ICurve2D, _
	second As ICurve2D _
) As Boolean
Visual C++
public:
static bool Connect(
	ICurve2D^ first, 
	ICurve2D^ second
)

Parameters

first
Type: CADability.Curve2D..::..ICurve2D
First curve
second
Type: CADability.Curve2D..::..ICurve2D
Second curve

Return Value

true if succeede, false otherwise

See Also