Gets or sets the indices.

Namespace: DigitalRune.Geometry.Meshes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.9.0.0 (1.9.3.9490)

Syntax

C#
public List<int> Indices { get; set; }
Visual Basic
Public Property Indices As List(Of Integer)
	Get
	Set
Visual C++
public:
property List<int>^ Indices {
	List<int>^ get ();
	void set (List<int>^ value);
}

Field Value

The indices. The default value is an empty list.

Remarks

Always 3 indices define 1 triangle. Each index is the index of a vertex in Vertices

See Also