CGAL_includes.hpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // This causes unknown bugs during intersection meshing:
  11. //// http://www.alecjacobson.com/weblog/?p=4291
  12. //#define CGAL_INTERSECTION_VERSION 1
  13. // Use this instead to mute errors resulting from bad CGAL assertions
  14. #define CGAL_KERNEL_NO_ASSERTIONS
  15. // Triangle triangle intersection
  16. #include <CGAL/intersections.h>
  17. // THIS CANNOT BE INCLUDED IN THE SAME FILE AS <CGAL/intersections.h>
  18. // #include <CGAL/Boolean_set_operations_2.h>
  19. // Constrained Delaunay Triangulation types
  20. #include <CGAL/Constrained_Delaunay_triangulation_2.h>
  21. #include <CGAL/Constrained_triangulation_plus_2.h>
  22. // Axis-align boxes for all-pairs self-intersection detection
  23. #include <CGAL/point_generators_3.h>
  24. #include <CGAL/Bbox_3.h>
  25. #include <CGAL/box_intersection_d.h>
  26. #include <CGAL/function_objects.h>
  27. #include <CGAL/Join_input_iterator.h>
  28. #include <CGAL/algorithm.h>
  29. #include <vector>
  30. // Axis-aligned bounding box tree for tet tri intersection
  31. #include <CGAL/AABB_tree.h>
  32. #include <CGAL/AABB_traits.h>
  33. #include <CGAL/AABB_triangle_primitive.h>
  34. // Boolean operations
  35. #include <CGAL/Polyhedron_3.h>
  36. // Is this actually used?
  37. //#include <CGAL/Nef_polyhedron_3.h>
  38. // Delaunay Triangulation in 3D
  39. #include <CGAL/Delaunay_triangulation_3.h>
  40. #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
  41. #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
  42. #endif