C# 클래스 Axiom.Graphics.IndexData

Summary class collecting together index data source information.
상속: DisposableObject
파일 보기 프로젝트 열기: WolfgangSt/axiom 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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