#include <vector>
#include <iostream>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/make_mesh_3.h>
#include <CGAL/Image_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_domain_with_polyline_features_3.h>
#include <CGAL/Labeled_mesh_domain_3.h>
#ifdef CGAL_CONCURRENT_MESH_3
#else
#endif
namespace params = CGAL::parameters;
#include "read_polylines.h"
int main(int argc, char* argv[])
{
std::cerr << "Error: Cannot read file " << fname << std::endl;
return EXIT_FAILURE;
}
using Point_3 = K::Point_3;
std::vector<std::vector<Point_3> > features_inside;
if (!read_polylines(lines_fname, features_inside))
{
std::cerr << "Error: Cannot read file " << lines_fname << std::endl;
return EXIT_FAILURE;
}
Mesh_domain domain = Mesh_domain::create_labeled_image_mesh_domain(image,
params::input_features = std::cref(features_inside));
Mesh_criteria criteria(params::edge_size = 6,
params::facet_angle = 30,
params::facet_size = 6,
params::facet_distance = 4,
params::cell_radius_edge_ratio = 3,
params::cell_size = 8);
std::ofstream medit_file("out.mesh");
CGAL::IO::write_MEDIT(medit_file, c3t3);
medit_file.close();
return EXIT_SUCCESS;
}
The class Image_3 is a C++ wrapper around the InrImage library.
Definition Image_3.h:11
bool read(const char *file)
Open a 3D image file.
The class Labeled_mesh_domain_3 implements indexed domains.
Definition Labeled_mesh_domain_3.h:359
The class gathers the refinement criteria for mesh tetrahedra and surface facets where surface facets...
Definition Mesh_criteria_3.h:186
The class Mesh_domain_with_polyline_features_3 enables the user to add some 0- and 1-dimensional feat...
Definition Mesh_domain_with_polyline_features_3.h:535
C3T3 make_mesh_3(const MeshDomain &domain, const MeshCriteria &criteria, const NamedParameters &np=parameters::default_values())
The function make_mesh_3() is a 3D mesh generator.
Definition make_mesh_3.h:468
unspecified_type type
The triangulation type to be used for the 3D triangulation embedding the mesh.
Definition Mesh_triangulation_3.h:207