1
0
forked from 0ad/0ad
0ad/source/tools/pmdexp/ExpVertex.h
2004-05-30 00:46:58 +00:00

23 lines
464 B
C
Executable File

#ifndef __EXPVERTEX_H
#define __EXPVERTEX_H
#include "lib\types.h"
#include "Vector3D.h"
#include "ModelDef.h"
////////////////////////////////////////////////////////////////////////
// ExpVertex: vertex type used in building mesh geometry
struct ExpVertex {
// index into original meshes point list
unsigned int m_Index;
// object space position
CVector3D m_Pos;
// object space normal
CVector3D m_Normal;
// uv coordinates
float m_UVs[2];
};
#endif