// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2014 Daniele Panozzo , Olga Diamanti // // 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_CUT_MESH_FROM_SINGULARITIES_H #define IGL_CUT_MESH_FROM_SINGULARITIES_H #include "igl_inline.h" #include namespace igl { //todo template IGL_INLINE void cut_mesh_from_singularities(const Eigen::PlainObjectBase &V, const Eigen::PlainObjectBase &F, const Eigen::PlainObjectBase &Handle_MMatch, const Eigen::PlainObjectBase &isSingularity, const Eigen::PlainObjectBase &singularityIndex, Eigen::PlainObjectBase &Handle_Seams); } #ifdef IGL_HEADER_ONLY #include "cut_mesh_from_singularities.cpp" #endif #endif