MLOcclusionMesh
Public Methods
MLOcclusionMesh Init
public static MLOcclusionMesh Init(
uint version =1
)
Parameters
Type | Name | Description |
---|---|---|
uint | version |
Public Attributes
Index
Pointer to index buffer. In the index buffer each value is the index of a vertex in the vertex buffer. Three indices define one triangle.For example, the first triangle will have the vertices: vertex[index[0]], vertex[index[1]], vertex[index[2]]. Index order is CW.
public IntPtr Index;
IndexCount
The number of indices in index buffer.
public uint IndexCount;
Timestamp
The timestamp when data was generated.
public ulong Timestamp;
Version
Struct version.
public uint Version;
Vertex
Pointer to the vertex buffer. All vertices are placed w.r.t.world origin.
public IntPtr Vertex;
VertexCount
The number of vertices in vertex buffer.
public uint VertexCount;