C# Class Axiom.Graphics.IndexData

Summary class collecting together index data source information.
Inheritance: DisposableObject
Afficher le fichier Open project: WolfgangSt/axiom Class Usage Examples

Méthodes publiques

Свойство Type Description
indexBuffer HardwareIndexBuffer
indexCount int
indexStart int

Méthodes publiques

Méthode Description
Clone ( ) : IndexData

Creates a copy of the index data object, without a copy of the buffer data.

Clone ( bool copyData ) : IndexData

Clones this vertex data, potentially including replicating any index buffers.

Method Details

Clone() public méthode

Creates a copy of the index data object, without a copy of the buffer data.
public Clone ( ) : IndexData
Résultat IndexData

Clone() public méthode

Clones this vertex data, potentially including replicating any index buffers.
public Clone ( bool copyData ) : IndexData
copyData bool /// If true, makes a copy the index buffer in addition to the definition. /// If false, the clone will refer to the same index buffer this object refers to. ///
Résultat IndexData

Property Details

indexBuffer public_oe property

Reference to the HardwareIndexBuffer to use, must be specified if useIndexes = true
public HardwareIndexBuffer,Axiom.Graphics indexBuffer
Résultat HardwareIndexBuffer

indexCount public_oe property

The number of indexes to use from the buffer.
public int indexCount
Résultat int

indexStart public_oe property

Index in the buffer to start from for this operation.
public int indexStart
Résultat int