Click or drag to resize
DigitalRuneVertexAdjacencyListIndices Field
The start indices of the adjacency list of a given vertex.

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[] ListIndices

Field Value

Type: UInt16
Remarks
This array contains n + 1 entries where n is the number of vertices. The last entry is a dummy entry that is only used to determine the end of the last adjacency list. This way, the start and end indices of a adjacency list can be determined using ListIndices[i] and ListIndices[i + 1] - 1. No need to check the indices.
See Also