Utility.GetEdgesWithoutDuplicates (Int32(,), Int32, out LinkedList<SharedEdge>()) Method

Gets a list of edges without duplicates from a mesh of triangles or quads.
Public Shared Function GetEdgesWithoutDuplicates( _ 
ByVal polygons As Integer(,), _ 
ByVal numVerts As Integer, _ 
ByRef edgesPerVertex As LinkedList(Of SharedEdge)() _ 
) As Integer(,)
This language is not supported or no code example is available.
public static int[,] GetEdgesWithoutDuplicates( 
int[,] polygons
int numVerts
out LinkedList<SharedEdge>[] edgesPerVertex 
)
This language is not supported or no code example is available.

Parameters

polygons
int[,]

Polygon list definition, dimensions can be [n,3] or [n,4].

numVerts
int

Number of vertices in the mesh

edgesPerVertex
LinkedList<SharedEdge>[]

An array of linked list of - unique - edges propagating from the same vertex. This is an intermediate result.

Return Value

int[,]

The rectangular array of the resulting - unique - edges. First and second indices are the edge vertex indices, third and fourth are the parent triangle indices. Fourth index can be -1 for edges with only one parent triangle.

.NET Framework

Supported in: 4.8

In this article

Definition