| VertexAdjacencyLists Field |
The adjacency lists of all vertices stored in a single array.
Namespace: DigitalRune.Geometry.MeshesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax [CLSCompliantAttribute(false)]
public ushort[] Lists
<CLSCompliantAttribute(false)>
Public Lists As UShort()
public:
[CLSCompliantAttribute(false)]
array<unsigned short>^ Lists
[<CLSCompliantAttribute(false)>]
val mutable Lists: uint16[]
Field Value
Type:
UInt16Remarks
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