Utility.GetEdgesWithoutDuplicates (Int32(,), Int32) 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
) As Integer(,)
This language is not supported or no code example is available.
public static int[,] GetEdgesWithoutDuplicates( 
int[,] polygons
int numVerts 
)
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

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