1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef T3DMESH_H #define T3DMESH_H #include "common.h" #include "material.h" #include <QtCore/QVector> class T3DMesh { public: T3DMesh(); QVector<Triangle> triangles; QVector<Quad> quads; T3DMaterial *material; }; #endif // T3DMESH_H