#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/Polyhedral_mesh_domain_with_features_3.h>
#include <CGAL/make_mesh_3.h>
Tr,Mesh_domain::Corner_index,Mesh_domain::Curve_index> C3t3;
int main()
{
Polyhedron poly;
std::ifstream input(CGAL::data_file_path("meshes/lion-head.off"));
input >> poly;
std::cerr << "Input geometry is not triangulated." << std::endl;
return EXIT_FAILURE;
}
std::vector<Polyhedron*> poly_ptrs_vector(1, &poly);
Mesh_domain domain(poly_ptrs_vector.begin(), poly_ptrs_vector.end());
domain.detect_features();
Mesh_criteria criteria(params::edge_size(0.025).
facet_angle(25).
facet_size(0.1).
facet_distance(0.001));
C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria, params::no_perturb().no_exude());
std::ofstream off_file("out.off");
c3t3.output_boundary_to_off(off_file);
return off_file.fail() ? EXIT_FAILURE : EXIT_SUCCESS;
}
The class gathers the refinement criteria for mesh tetrahedra and surface facets where surface facets...
Definition: Mesh_criteria_3.h:186
The class Polyhedral_mesh_domain_with_features_3 implements a domain whose boundary is a simplicial p...
Definition: Polyhedral_mesh_domain_with_features_3.h:110
bool is_triangle_mesh(const FaceGraph &g)