diff --git a/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h b/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h index 174a939542b..502978e7705 100644 --- a/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h +++ b/Periodic_3_mesh_3/include/CGAL/IO/Medit_IO.h @@ -82,8 +82,6 @@ template Stream& write_complex_to_medit(Stream& out, C3t3& c3t3, unsigned occurence_count = 8) { - std::cout << "write complex to medit" << std::endl; - // if: // -"1": only draws a single instance of the domain // -"2": draws 2 occurences of the domain, displaying an additional domain on @@ -116,10 +114,6 @@ Stream& write_complex_to_medit(Stream& out, C3t3& c3t3, int Oy_rn = 1 + (((occurence_count - 1) >> 1) & 1); int Oz_rn = 1 + (((occurence_count - 1) >> 2) & 1); - std::cout << Ox_rn << " instances on OX" << std::endl; - std::cout << Oy_rn << " instances on OY" << std::endl; - std::cout << Oz_rn << " instances on OZ" << std::endl; - int number_of_vertices = static_cast(tr.number_of_vertices()); int number_of_facets = static_cast(c3t3.number_of_facets()); int number_of_cells = static_cast(c3t3.number_of_cells());