vcglib/apps/sample/trimesh_intersection/trimesh_intersection.cpp

114 lines
3.7 KiB
C++
Raw Normal View History

2006-02-13 17:15:03 +01:00
#include <vector>
using namespace std;
// VCG headers for triangular mesh processing
#include <vcg/complex/trimesh/base.h>
#include <vcg/complex/trimesh/update/topology.h>
#include <vcg/complex/trimesh/update/edges.h>
#include <vcg/complex/trimesh/update/bounding.h>
#include <vcg/complex/trimesh/update/flag.h>
#include <vcg/complex/trimesh/clean.h>
2006-02-13 17:17:06 +01:00
#include <vcg/complex/intersection.h>
#include <vcg/space/index/grid_static_ptr.h>
#include <vcg/simplex/edge/with/ae.h>
#include <vcg/complex/edgemesh/base.h>
#include <vcg/complex/edgemesh/allocate.h>
#include <vcg/complex/edgemesh/update/bounding.h>
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
// VCG File Format Importer/Exporter
2006-02-13 17:15:03 +01:00
#include <wrap/io_trimesh/import.h>
2006-02-13 17:17:06 +01:00
#include <wrap/io_edgemesh/export_svg.h>
2006-02-13 17:15:03 +01:00
// VCG Vertex
2006-02-13 17:17:06 +01:00
#include <vcg/simplex/vertex/vertex.h>
#include <vcg/simplex/vertex/with/afvn.h>
2006-02-13 17:15:03 +01:00
// VCG Faces
2006-02-13 17:17:06 +01:00
#include <vcg/simplex/face/face.h>
#include <vcg/simplex/face/with/afav.h>
2006-02-13 17:15:03 +01:00
using namespace vcg;
class MyFace;
class MyEdge;
2006-02-13 17:17:06 +01:00
class MyVertex : public VertexAFVN<float, MyEdge, MyFace> {};
class MyFace : public FaceAFAV< MyVertex, MyEdge, MyFace > {};
class MyEdge : public vcg::EdgeAE<MyEdge, MyVertex> {};
class MyMesh : public vcg::tri::TriMesh< vector<MyVertex>, vector<MyFace> > {};
class MyEdgeMesh: public vcg::edge::EdgeMesh< vector<MyVertex>, vector<MyEdge> > {};
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
typedef vcg::GridStaticPtr<MyMesh::FaceType, MyMesh::ScalarType> TriMeshGrid;
2006-02-13 17:15:03 +01:00
int main(int argc,char ** argv)
{
if (argc<6)
{
2006-02-13 17:17:06 +01:00
printf("\n");
printf(" Usage: trimesh_intersection <filename> <a> <b> <c> <d>\n\n");
printf(" <filename> Mesh model to intersect (PLY format).\n");
printf(" <a> <b> <c> <d> The coefficients that specifying a plane in the form:\n\n");
printf(" a*x + b*y + c*z + d = 0\n\n\n");
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
printf(" Example: trimesh_intersection bunny.ply 0.0 1.0 0.0 0.0\n\n");
2006-02-13 17:15:03 +01:00
return 0;
}
MyMesh m;
// open a mesh
int err = tri::io::Importer<MyMesh>::Open(m,argv[1]);
2006-02-13 17:17:06 +01:00
if(err)
2006-02-13 17:15:03 +01:00
{
2006-02-13 17:17:06 +01:00
printf("Error in reading %s: '%s'\n",argv[1],tri::io::Importer<MyMesh>::ErrorMsg(err));
exit(-1);
2006-02-13 17:15:03 +01:00
}
2006-02-13 17:17:06 +01:00
// some cleaning to get rid of bad file formats like stl that duplicate vertexes..
int dup = tri::Clean<MyMesh>::RemoveDuplicateVertex(m);
int unref = tri::Clean<MyMesh>::RemoveUnreferencedVertex(m);
2006-02-13 17:15:03 +01:00
if (dup > 0 || unref > 0)
printf("Removed %i duplicate and %i unreferenced vertices from mesh %s\n",dup,unref,argv[1]);
2006-02-13 17:17:06 +01:00
printf("");
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
// Compute cross-intersection with the given plane
2006-02-13 17:15:03 +01:00
/////////////////////////////////////////////////////////
2006-02-13 17:17:06 +01:00
MyMesh::ScalarType a = static_cast<MyMesh::ScalarType>(atof(argv[2]));
MyMesh::ScalarType b = static_cast<MyMesh::ScalarType>(atof(argv[3]));
MyMesh::ScalarType c = static_cast<MyMesh::ScalarType>(atof(argv[4]));
MyMesh::ScalarType d = static_cast<MyMesh::ScalarType>(atof(argv[5]));
vcg::Point3<MyMesh::ScalarType> direction(a, b, c);
MyMesh::ScalarType distance = -d / direction.Norm();
direction.Normalize();
vcg::Plane3<MyMesh::ScalarType> plane(distance, direction);
double avg_length; // average length of the edges
MyEdgeMesh edge_mesh; // returned EdgeMesh (i.e. the cross-section)
// Create a static grid (for fast indexing) and fill it
TriMeshGrid static_grid;
static_grid.Set(m.face.begin(), m.face.end());
std::vector<TriMeshGrid::Cell *> intersected_cells;
vcg::Intersection<MyMesh, MyEdgeMesh, MyMesh::ScalarType, TriMeshGrid>(plane,
edge_mesh, avg_length, &static_grid, intersected_cells);
// Compute bounding box
vcg::edge::UpdateBounding<MyEdgeMesh>::Box(edge_mesh);
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
// export the cross-section
2006-02-15 16:39:04 +01:00
if (vcg::edge::io::ExporterSVG<MyEdgeMesh>::Save(&edge_mesh, "out.svg"))
2006-02-13 17:17:06 +01:00
printf(" The cross-intersection has been successfully saved (OUT.SVG).\n");
else
printf(" The cross-intersection cannot be saved.\n");
2006-02-13 17:15:03 +01:00
2006-02-13 17:17:06 +01:00
return 0;
2006-02-13 17:15:03 +01:00
}