// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2014 Alec Jacobson // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. #ifndef IGL_CGAL_INCLUDES_H #define IGL_CGAL_INCLUDES_H // This causes unknown bugs during intersection meshing: //// http://www.alecjacobson.com/weblog/?p=4291 //#define CGAL_INTERSECTION_VERSION 1 // Use this instead to mute errors resulting from bad CGAL assertions #define CGAL_KERNEL_NO_ASSERTIONS // Triangle triangle intersection #include // THIS CANNOT BE INCLUDED IN THE SAME FILE AS // #include // Constrained Delaunay Triangulation types #include #include // Axis-align boxes for all-pairs self-intersection detection #include #include #include #include #include #include #include // Axis-aligned bounding box tree for tet tri intersection #include #include #include // Boolean operations #include // Is this actually used? //#include // Delaunay Triangulation in 3D #include #include #include #endif