Mesh
Microsoft DirectX 9.0 SDK Update (October 2004)

Mesh


Defines a simple mesh. The first array is a list of vertices, and the second array defines the faces of the mesh by indexing into the vertex array.

	template Mesh
	{
	    <3D82AB44-62DA-11CF-AB39-0020AF71E433>
	    DWORD nVertices;
	    array Vector vertices[nVertices];
	    DWORD nFaces;
	    array MeshFace faces[nFaces];
	    [...]
	}

Where:



© 2004 Microsoft Corporation. All rights reserved.
Feedback? Please provide us with your comments on this topic.
For more help, visit the DirectX Developer Center.