// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2015 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_REMESH_INTERSECTIONS_H #define IGL_CGAL_REMESH_INTERSECTIONS_H #include #include #include "CGAL_includes.hpp" #ifdef MEX # include # include # undef assert # define assert( isOK ) ( (isOK) ? (void)0 : (void) mexErrMsgTxt(C_STR(__FILE__<<":"<<__LINE__<<": failed assertion `"<<#isOK<<"'"< IGL_INLINE void remesh_intersections( const Eigen::PlainObjectBase & V, const Eigen::PlainObjectBase & F, const std::vector > & T, const std::map< typename DerivedF::Index, std::pair > > & offending, const std::map< std::pair, std::vector > & edge2faces, Eigen::PlainObjectBase & VV, Eigen::PlainObjectBase & FF, Eigen::PlainObjectBase & J, Eigen::PlainObjectBase & IM); } } #ifndef IGL_STATIC_LIBRARY # include "remesh_intersections.cpp" #endif #endif