// 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 // 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 // ALEC: IS ANY IGL FUNCTION USING THESE? //// Boolean operations //#include //#include // Delaunay Triangulation in 3D #include #include #include #endif