#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("data/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(edge_size = 0.025,
facet_angle = 25,
facet_size = 0.1,
facet_distance = 0.001);
std::ofstream off_file("out.off");
c3t3.output_boundary_to_off(off_file);
return off_file.fail() ? EXIT_FAILURE : EXIT_SUCCESS;
}