CADability dotNET
Constructs a Border from a list of ICurve2D objects. The objects must be in the correct order and must be continous, i.e. EndPoint of ICurve2D[i] must be equal to Startpoint of ICurve2D[i+1]. Equality refers to Precision.IsEqual(). It will be checked automatically, whether the border is closed and if so, it will be oriented counterclockwise.

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

Syntax

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

Parameters

segments
Type: array<CADability.Curve2D..::..ICurve2D>[]()[][]
list of curves to make the border

See Also