C# Класс Axiom.Graphics.IndexData

Summary class collecting together index data source information.
Наследование: DisposableObject
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
indexBuffer HardwareIndexBuffer
indexCount int
indexStart int

Открытые методы

Метод Описание
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.

Описание методов

Clone() публичный метод

Creates a copy of the index data object, without a copy of the buffer data.
public Clone ( ) : IndexData
Результат IndexData

Clone() публичный метод

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. ///
Результат IndexData

Описание свойств

indexBuffer публичное свойство

Reference to the HardwareIndexBuffer to use, must be specified if useIndexes = true
public HardwareIndexBuffer,Axiom.Graphics indexBuffer
Результат HardwareIndexBuffer

indexCount публичное свойство

The number of indexes to use from the buffer.
public int indexCount
Результат int

indexStart публичное свойство

Index in the buffer to start from for this operation.
public int indexStart
Результат int