MeshSubSet.h 581 B

12345678910111213141516171819202122232425262728
  1. #ifndef MESHSUBSET_H_
  2. #define MESHSUBSET_H_
  3. #include <vector>
  4. #include "Common.h"
  5. #include "Object.h"
  6. #include "Vertex.h"
  7. class MeshSubSet : public Object
  8. {
  9. public:
  10. MeshSubSet(void);
  11. virtual ~MeshSubSet(void);
  12. virtual byte getTypeId(void);
  13. virtual const char* getElementName(void);
  14. virtual void writeBinary(FILE* file);
  15. virtual void writeText(FILE* file);
  16. std::vector<Vertex*> vertices;
  17. std::vector<int> indices;
  18. //Set<Vertex*, int> vertexLookupTable;
  19. std::map<Vertex, int> vertexLookupTable;
  20. };
  21. #endif