NewtonMeshVertexFormat

From Newton Wiki
Revision as of 06:04, 18 June 2019 by WikiSysop (talk | contribs) (Created page with "<source lang="cpp"> typedef struct NewtonMeshVertexFormat { int m_faceCount; int* m_faceIndexCount; int* m_faceMaterial; NewtonMeshDoubleData m_vertex; NewtonMesh...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
	typedef struct NewtonMeshVertexFormat
	{
		int m_faceCount;
		int* m_faceIndexCount;
		int* m_faceMaterial;
		NewtonMeshDoubleData m_vertex;
		NewtonMeshFloatData m_normal;
		NewtonMeshFloatData m_binormal;
		NewtonMeshFloatData m_uv0;
		NewtonMeshFloatData m_uv1;
		NewtonMeshFloatData m_vertexColor;
	} NewtonMeshVertexFormat;