CADability dotNET
Create a border with the provided segments assumed to be in correct order and orientation. If forceConnected is true, the border will be closed.

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

Syntax

C#
public Border(
	ICurve2D[] segments,
	bool forceConnected
)
Visual Basic
Public Sub New ( _
	segments As ICurve2D(), _
	forceConnected As Boolean _
)
Visual C++
public:
Border(
	array<ICurve2D^>^ segments, 
	bool forceConnected
)

Parameters

segments
Type: array<CADability.Curve2D..::..ICurve2D>[]()[][]
The oriented and ordered segments
forceConnected
Type: System..::..Boolean
True: border will be closed even if segments aren't connected at the end

See Also