removed useless include from some samples

This commit is contained in:
Paolo Cignoni 2012-10-25 21:18:49 +00:00
parent be27ec4d81
commit bf7511c68b
3 changed files with 1 additions and 13 deletions

View File

@ -1,9 +1,5 @@
// stuff to define the mesh
#include <vcg/simplex/vertex/base.h>
#include <vcg/simplex/vertex/component_ocf.h>
#include <vcg/simplex/face/base.h>
#include <vcg/simplex/edge/base.h>
#include <vcg/complex/complex.h>
#include <vcg/complex/append.h>
// io

View File

@ -47,7 +47,7 @@ class MyMesh : public vcg::tri::TriMesh< std::vector< MyVertex>, std::vector< M
typedef SimpleVolume<SimpleVoxel> MyVolume;
int main(int /*argc*/ , char /**argv[]*/)
int main(int argc , char *argv[])
{
MyVolume volume;

View File

@ -1,8 +1,3 @@
#include<vcg/simplex/vertex/base.h>
#include<vcg/simplex/face/base.h>
#include<vcg/simplex/face/component_ocf.h>
#include<vcg/simplex/face/topology.h>
#include<vcg/complex/complex.h>
#include <vcg/complex/algorithms/update/topology.h>
@ -17,9 +12,6 @@
#include <wrap/io_trimesh/import_ply.h>
#include <wrap/io_trimesh/export.h>
// std
#include <vector>
using namespace vcg;
using namespace std;