vcglib/apps/sample/trimesh_isosurface/trimesh_isosurface.cpp

63 lines
1.8 KiB
C++
Raw Normal View History

2005-09-21 12:29:33 +02:00
#include <stdio.h>
#include <vcg/space/point3.h>
#include <vcg/space/box3.h>
#include <vcg/math/perlin_noise.h>
#include <vcg/simplex/vertex/base.h>
#include <vcg/simplex/face/base.h>
#include <vcg/complex/trimesh/base.h>
#include <vcg/complex/trimesh/allocate.h>
2005-09-21 12:29:33 +02:00
#include <vcg/complex/trimesh/create/marching_cubes.h>
#include <vcg/complex/trimesh/create/extended_marching_cubes.h>
#include <vcg/complex/trimesh/create/mc_trivial_walker.h>
2009-03-30 22:58:18 +02:00
#include <wrap/io_trimesh/export_ply.h>
2005-09-21 12:29:33 +02:00
2007-12-13 01:21:55 +01:00
2005-09-21 12:29:33 +02:00
using namespace std;
using namespace vcg;
typedef float ScalarType;
class MyEdge;
class MyFace;
class MyVertex : public VertexSimp2< MyVertex, MyEdge, MyFace, vertex::Coord3f>{};
class MyFace : public FaceSimp2< MyVertex, MyEdge, MyFace, face::VertexRef, face::BitFlags> {};
//class MyVertex : public vcg::Vertex< ScalarType, MyEdge, MyFace > {};
//class MyFace : public vcg::Face< MyVertex, MyEdge, MyFace> {};
2005-09-21 12:29:33 +02:00
class MyMesh : public vcg::tri::TriMesh< std::vector< MyVertex>, std::vector< MyFace > > {};
2007-12-13 01:21:55 +01:00
typedef SimpleVolume<SimpleVoxel> MyVolume;
2005-09-21 12:29:33 +02:00
int main(int /*argc*/ , char /**argv[]*/)
2005-09-21 12:29:33 +02:00
{
MyVolume volume;
typedef vcg::tri::TrivialWalker<MyMesh,MyVolume> MyWalker;
typedef vcg::tri::MarchingCubes<MyMesh, MyWalker> MyMarchingCubes;
MyWalker walker;
// Simple initialization of the volume with some cool perlin noise
volume.Init(Point3i(64,64,64));
for(int i=0;i<64;i++)
for(int j=0;j<64;j++)
for(int k=0;k<64;k++)
volume.Val(i,j,k)=(j-32)*(j-32)+(k-32)*(k-32) + i*10*(float)math::Perlin::Noise(i*.2,j*.2,k*.2);
2005-09-21 12:29:33 +02:00
// MARCHING CUBES
MyMesh mc_mesh;
printf("[MARCHING CUBES] Building mesh...");
MyMarchingCubes mc(mc_mesh, walker);
walker.BuildMesh<MyMarchingCubes>(mc_mesh, volume, mc, 20*20);
vcg::tri::io::ExporterPLY<MyMesh>::Save( mc_mesh, "marching_cubes.ply");
printf("OK!\n");
2009-03-30 22:58:18 +02:00
};