Difference between revisions of "NewtonMeshVertexFormat"

From Newton Wiki
Jump to: navigation, search
(Created page with "<source lang="cpp"> typedef struct NewtonMeshVertexFormat { int m_faceCount; int* m_faceIndexCount; int* m_faceMaterial; NewtonMeshDoubleData m_vertex; NewtonMesh...")
 
(No difference)

Latest revision as of 06:04, 18 June 2019

	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;