00001 #include <vcg\simplex\vertex\with\atvn.h>
00002 #include <vcg\simplex\tetrahedron\with\atav.h>
00003 #include <vcg\complex\tetramesh\base.h>
00004
00005 class MyTetrahedron;
00006 class DUMMYEDGETYPE;
00007 class DUMMYFACETYPE;
00008
00009 class MyVertex: public vcg::VertexATVNd<DUMMYEDGETYPE,DUMMYFACETYPE,MyTetrahedron>{};
00010
00011 class MyTetrahedron: public vcg::TetraATAV<MyVertex,MyTetrahedron>{};
00012
00013 typedef vcg::tetra::Tetramesh< std::vector<MyVertex> ,std::vector<MyTetrahedron> > MyTetraMesh;