From 324839c8ae7bc520f91a3de0661c220f2bc435d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 18 Mar 2015 11:51:24 +0100 Subject: [PATCH] move header files --- .../Polygon_mesh_processing/hole_filling_example.cpp | 2 +- .../Polygon_mesh_processing/triangulate_faces_example.cpp | 2 +- .../triangulate_polyline_example.cpp | 2 +- .../{ => Polygon_mesh_processing}/triangulate_faces.h | 0 .../CGAL/{ => Polygon_mesh_processing}/triangulate_hole.h | 0 .../include/CGAL/polygon_mesh_processing.h | 8 ++++---- .../triangulate_hole_Polyhedron_3_no_delaunay_test.cpp | 2 +- .../triangulate_hole_Polyhedron_3_test.cpp | 2 +- .../triangulate_hole_polyline_test.cpp | 2 +- .../Polyhedron/Polyhedron_demo_hole_filling_plugin.cpp | 2 +- .../Polyhedron_demo_hole_filling_polyline_plugin.cpp | 2 +- .../Polyhedron_demo_triangulate_facets_plugin.cpp | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) rename Polygon_mesh_processing/include/CGAL/{ => Polygon_mesh_processing}/triangulate_faces.h (100%) rename Polygon_mesh_processing/include/CGAL/{ => Polygon_mesh_processing}/triangulate_hole.h (100%) diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example.cpp index e18967fb3e2..61ba1e04f51 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example.cpp @@ -3,7 +3,7 @@ #include #include -#include +#include #include #include diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_faces_example.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_faces_example.cpp index c6080351d7e..80629e9f611 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_faces_example.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_faces_example.cpp @@ -2,7 +2,7 @@ #include #include -#include +#include #include diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_polyline_example.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_polyline_example.cpp index 8448b4bce52..74379b5501a 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_polyline_example.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/triangulate_polyline_example.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include #include diff --git a/Polygon_mesh_processing/include/CGAL/triangulate_faces.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_faces.h similarity index 100% rename from Polygon_mesh_processing/include/CGAL/triangulate_faces.h rename to Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_faces.h diff --git a/Polygon_mesh_processing/include/CGAL/triangulate_hole.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h similarity index 100% rename from Polygon_mesh_processing/include/CGAL/triangulate_hole.h rename to Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h diff --git a/Polygon_mesh_processing/include/CGAL/polygon_mesh_processing.h b/Polygon_mesh_processing/include/CGAL/polygon_mesh_processing.h index bcc45af8d04..b5a8a374fa0 100644 --- a/Polygon_mesh_processing/include/CGAL/polygon_mesh_processing.h +++ b/Polygon_mesh_processing/include/CGAL/polygon_mesh_processing.h @@ -7,8 +7,8 @@ * `CGAL/orient_polygon_soup.h`, * `CGAL/polygon_mesh_self_intersections.h`, * `CGAL/polygon_soup_to_polygon_mesh.h`, -* `CGAL/triangulate_faces.h`, -* `CGAL/triangulate_hole.h`, +* `CGAL/Polygon_mesh_processing/triangulate_faces.h`, +* `CGAL/Polygon_mesh_processing/triangulate_hole.h`, * `CGAL/Polygon_mesh_processing/compute_normal.h`, * `CGAL/Polygon_mesh_processing/connected_components.h`, * `CGAL/Polygon_mesh_processing/fair.h`, @@ -21,8 +21,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_no_delaunay_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_no_delaunay_test.cpp index 8119d5d0d94..b71a354e7d5 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_no_delaunay_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_no_delaunay_test.cpp @@ -13,7 +13,7 @@ #endif #include -#include +#include #include #include diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_test.cpp index d009fc7e419..c8ff4882f56 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_Polyhedron_3_test.cpp @@ -13,7 +13,7 @@ #endif #include -#include +#include #include diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp index f2cb852562b..20246ad530c 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp @@ -12,7 +12,7 @@ #include #include -#include +#include typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel; typedef Kernel::Point_3 Point_3; diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_plugin.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_plugin.cpp index c8a982cd482..9c7006193fd 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_plugin.cpp @@ -11,7 +11,7 @@ #include "ui_Hole_filling_widget.h" #include "Polyhedron_type.h" -#include +#include #include #include diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_polyline_plugin.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_polyline_plugin.cpp index 15eee8e5d13..56872379320 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_polyline_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_hole_filling_polyline_plugin.cpp @@ -8,7 +8,7 @@ #include "Polyhedron_demo_plugin_interface.h" #include "Polyhedron_type.h" -#include +#include #include #include #include diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_demo_triangulate_facets_plugin.cpp b/Polyhedron/demo/Polyhedron/Polyhedron_demo_triangulate_facets_plugin.cpp index efb624f71d4..06a6847ed88 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_demo_triangulate_facets_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Polyhedron_demo_triangulate_facets_plugin.cpp @@ -7,7 +7,7 @@ #include "Scene_polyhedron_item.h" #include "Polyhedron_type.h" -#include +#include class Polyhedron_demo_triangulate_facets_plugin : public QObject,