CGAL_includes.hpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2014 Alec Jacobson <alecjacobson@gmail.com>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef IGL_CGAL_INCLUDES_H
  9. #define IGL_CGAL_INCLUDES_H
  10. // Triangle triangle intersection
  11. #include <CGAL/intersections.h>
  12. // THIS CANNOT BE INCLUDED IN THE SAME FILE AS <CGAL/intersections.h>
  13. // #include <CGAL/Boolean_set_operations_2.h>
  14. // Constrained Delaunay Triangulation types
  15. #include <CGAL/Constrained_Delaunay_triangulation_2.h>
  16. #include <CGAL/Constrained_triangulation_plus_2.h>
  17. // Axis-align boxes for all-pairs self-intersection detection
  18. #include <CGAL/point_generators_3.h>
  19. #include <CGAL/Bbox_3.h>
  20. #include <CGAL/box_intersection_d.h>
  21. #include <CGAL/function_objects.h>
  22. #include <CGAL/Join_input_iterator.h>
  23. #include <CGAL/algorithm.h>
  24. #include <vector>
  25. // Axis-aligned bounding box tree for tet tri intersection
  26. #include <CGAL/AABB_tree.h>
  27. #include <CGAL/AABB_traits.h>
  28. #include <CGAL/AABB_triangle_primitive.h>
  29. // ALEC: IS ANY IGL FUNCTION USING THESE?
  30. //// Boolean operations
  31. //#include <CGAL/Polyhedron_3.h>
  32. //#include <CGAL/Nef_polyhedron_3.h>
  33. // Delaunay Triangulation in 3D
  34. #include <CGAL/Delaunay_triangulation_3.h>
  35. #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
  36. #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
  37. #endif