// 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_REMESH_SELF_INTERSECTIONS_H #define IGL_CGAL_REMESH_SELF_INTERSECTIONS_H #include #include "RemeshSelfIntersectionsParam.h" #include #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_self_intersections( const Eigen::PlainObjectBase & V, const Eigen::PlainObjectBase & F, const RemeshSelfIntersectionsParam & params, Eigen::PlainObjectBase & VV, Eigen::PlainObjectBase & FF, Eigen::PlainObjectBase & IF, Eigen::PlainObjectBase & J, Eigen::PlainObjectBase & IM); } } #ifndef IGL_STATIC_LIBRARY # include "remesh_self_intersections.cpp" #endif #endif