| VertexAdjacencyListIndices Field |
The start indices of the adjacency list of a given vertex.
Namespace: DigitalRune.Geometry.MeshesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax [CLSCompliantAttribute(false)]
public ushort[] ListIndices
<CLSCompliantAttribute(false)>
Public ListIndices As UShort()
public:
[CLSCompliantAttribute(false)]
array<unsigned short>^ ListIndices
[<CLSCompliantAttribute(false)>]
val mutable ListIndices: uint16[]
Field Value
Type:
UInt16Remarks
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