CADability dotNET
Returns all edges that belong to the hole with the provided index. The order of the edges is counterclockwise when you look at the face from the outside.

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

Syntax

C#
public Edge[] HoleEdges(
	int index
)
Visual Basic
Public Function HoleEdges ( _
	index As Integer _
) As Edge()
Visual C++
public:
array<Edge^>^ HoleEdges(
	int index
)

Parameters

index
Type: System..::..Int32
Index of the hole to get

Return Value

The requested hole

See Also