Click or drag to resize
DigitalRuneVertexAdjacencyLists Field
The adjacency lists of all vertices stored in a single array.

Namespace: DigitalRune.Geometry.Meshes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
[CLSCompliantAttribute(false)]
public ushort[] Lists

Field Value

Type: UInt16
Remarks

An adjacency list is a list of indices. Each entry is the index of an adjacent vertex.

The adjacency list of vertex i starts at Lists[ListIndices[i]] and ends at Lists[ListIndices[i + 1] - 1].

See Also