From e91a49ba3c18e3ebd8a92283e70d8b6e175f6d49 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 21 Sep 2021 09:45:51 +0100 Subject: [PATCH] Move file to internal directory --- .../Convex_hull_3/quickhull_indexed_triangle_set_3.cpp | 3 +-- .../CGAL/{ => Convex_hull_3/internal}/Indexed_triangle_set.h | 0 Convex_hull_3/include/CGAL/convex_hull_3.h | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) rename Convex_hull_3/include/CGAL/{ => Convex_hull_3/internal}/Indexed_triangle_set.h (100%) diff --git a/Convex_hull_3/examples/Convex_hull_3/quickhull_indexed_triangle_set_3.cpp b/Convex_hull_3/examples/Convex_hull_3/quickhull_indexed_triangle_set_3.cpp index 1d524c31ebb..256e9009a88 100644 --- a/Convex_hull_3/examples/Convex_hull_3/quickhull_indexed_triangle_set_3.cpp +++ b/Convex_hull_3/examples/Convex_hull_3/quickhull_indexed_triangle_set_3.cpp @@ -1,5 +1,4 @@ #include -#include #include #include @@ -24,7 +23,7 @@ int main(int argc, char* argv[]) points.push_back(p); } - + CGAL::convex_hull_3(points.begin(), points.end(), vertices, faces); std::cout << vertices.size() << " " << faces.size() << std::endl; diff --git a/Convex_hull_3/include/CGAL/Indexed_triangle_set.h b/Convex_hull_3/include/CGAL/Convex_hull_3/internal/Indexed_triangle_set.h similarity index 100% rename from Convex_hull_3/include/CGAL/Indexed_triangle_set.h rename to Convex_hull_3/include/CGAL/Convex_hull_3/internal/Indexed_triangle_set.h diff --git a/Convex_hull_3/include/CGAL/convex_hull_3.h b/Convex_hull_3/include/CGAL/convex_hull_3.h index 73e39b39327..681dcfe52ea 100644 --- a/Convex_hull_3/include/CGAL/convex_hull_3.h +++ b/Convex_hull_3/include/CGAL/convex_hull_3.h @@ -31,6 +31,7 @@ #include #include #include +#include #include #include