diff --git a/Mesh_3/examples/Mesh_3/mesh_polyhedral_domain_with_features.cpp b/Mesh_3/examples/Mesh_3/mesh_polyhedral_domain_with_features.cpp index 9df6bf26892..1fbcdd9eef2 100644 --- a/Mesh_3/examples/Mesh_3/mesh_polyhedral_domain_with_features.cpp +++ b/Mesh_3/examples/Mesh_3/mesh_polyhedral_domain_with_features.cpp @@ -6,6 +6,7 @@ #include #include +#include // Domain typedef CGAL::Exact_predicates_inexact_constructions_kernel K; @@ -47,6 +48,8 @@ int main(int argc, char*argv[]) return EXIT_FAILURE; } + CGAL::Timer t; + t.start(); // Create domain Mesh_domain domain(polyhedron); @@ -57,9 +60,9 @@ int main(int argc, char*argv[]) Mesh_criteria criteria(edge_size = 0.025, facet_angle = 25, facet_size = 0.05, facet_distance = 0.005, cell_radius_edge_ratio = 3, cell_size = 0.05); - // Mesh generation C3t3 c3t3 = CGAL::make_mesh_3(domain, criteria); + std::cerr << t.time() << " sec." << std::endl; // Output std::ofstream medit_file("out.mesh");