Utility.FindLoops Method

Finds the outers and inners contours from a collection of 2d contours.
Public Shared Sub FindLoops( _ 
ByVal loops As Point2D()(), _ 
ByRef outers As Point2D()(), _ 
ByRef inners As Point2D()()() _ 
)
This language is not supported or no code example is available.
public static void FindLoops( 
Point2D[][] loops
out Point2D[][] outers
out Point2D[][][] inners 
)
This language is not supported or no code example is available.

Parameters

loops
Point2D[][]

The collection of 2d contours

outers
Point2D[][]

The collection of outer contours

inners
Point2D[][][]

The collection of inner contours for each contour of the outers collection

.NET Framework

Supported in: 4.8

In this article

Definition