// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2015 Daniele Panozzo // // 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/. #include "is_irregular_vertex.h" #include #include "is_border_vertex.h" template IGL_INLINE std::vector igl::is_irregular_vertex(const Eigen::PlainObjectBase &V, const Eigen::PlainObjectBase &F) { Eigen::VectorXi count = Eigen::VectorXi::Zero(F.maxCoeff()); for(unsigned i=0; i border = is_border_vertex(V,F); std::vector res(count.size()); for (unsigned i=0; i > igl::is_irregular_vertex, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&); template std::vector > igl::is_irregular_vertex, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&); #endif