Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] mesh simplified

Subject: CGAL users discussion list

List archive

[cgal-discuss] mesh simplified


Chronological Thread 
  • From: <>
  • To:
  • Subject: [cgal-discuss] mesh simplified
  • Date: Wed, 14 Apr 2010 00:57:06 +0200 (CEST)

Hi
I am new in CGAL so how can I create a surface by having just vtk file format
then using simplified mesh which is mentioned in website
.for example I have coordinate 1,-1,1 and I I have vertex number in vtk file
also
so how can I create this surface in below program


#include <iostream>
#include <fstream>

#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/IO/Polyhedron_iostream.h>

// Adaptor for Polyhedron_3
#include <CGAL/Surface_mesh_simplification/HalfedgeGraph_Polyhedron_3.h>

// Simplification function
#include <CGAL/Surface_mesh_simplification/edge_collapse.h>

// Stop-condition policy
#include
<CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_stop_predicate.h>

typedef CGAL::Simple_cartesian<double> Kernel;
typedef CGAL::Polyhedron_3<Kernel> Surface;

namespace SMS = CGAL::Surface_mesh_simplification ;

int main( int argc, char** argv )
{
Surface surface;

std::ifstream is(argv[1]) ; is >> surface ;

// This is a stop predicate (defines when the algorithm terminates).
// In this example, the simplification stops when the number of undirected
edges
// left in the surface drops below the specified number (1000)
SMS::Count_stop_predicate<Surface> stop(1000);

// This the actual call to the simplification algorithm.
// The surface and stop conditions are mandatory arguments.
// The index maps are needed because the vertices and edges
// of this surface lack an "id()" field.
int r = SMS::edge_collapse
(surface
,stop

,CGAL::vertex_index_map(boost::get(CGAL::vertex_external_index,surface))
.edge_index_map (boost::get(CGAL::edge_external_index
,surface))
);

std::cout << "\nFinished...\n" << r << " edges removed.\n"
<< (surface.size_of_halfedges()/2) << " final edges.\n" ;

std::ofstream os( argc > 2 ? argv[2] : "out.off" ) ; os << surface ;

return 0 ;
}


  • [cgal-discuss] mesh simplified, sahel, 04/14/2010

Archive powered by MHonArc 2.6.16.

Top of Page