// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 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/. #include "is_edge_manifold.h" #include "oriented_facets.h" #include "unique_simplices.h" #include #include template < typename DerivedF, typename DerivedBF, typename DerivedE, typename DerivedEMAP, typename DerivedBE> IGL_INLINE bool igl::is_edge_manifold( const Eigen::MatrixBase& F, Eigen::PlainObjectBase& BF, Eigen::PlainObjectBase& E, Eigen::PlainObjectBase& EMAP, Eigen::PlainObjectBase& BE) { using namespace Eigen; typedef typename DerivedF::Index Index; typedef Matrix VectorXF; typedef Matrix MatrixXF2; MatrixXF2 allE; oriented_facets(F,allE); // Find unique undirected edges and mapping VectorXF _; unique_simplices(allE,E,_,EMAP); std::vector count(E.rows(),0); for(Index e = 0;e IGL_INLINE bool igl::is_edge_manifold( const Eigen::MatrixBase& F) { // TODO: It's bothersome that this is not calling/reusing the code from the // overload above. This could result in disagreement. // List of edges (i,j,f,c) where edge i > TTT; for(int f=0;f v2) std::swap(v1,v2); std::vector r(4); r[0] = v1; r[1] = v2; r[2] = f; r[3] = i; TTT.push_back(r); } // Sort lexicographically std::sort(TTT.begin(),TTT.end()); for(int i=2;i<(int)TTT.size();++i) { // Check any edges occur 3 times std::vector& r1 = TTT[i-2]; std::vector& r2 = TTT[i-1]; std::vector& r3 = TTT[i]; if ( (r1[0] == r2[0] && r2[0] == r3[0]) && (r1[1] == r2[1] && r2[1] == r3[1]) ) { return false; } } return true; } #ifdef IGL_STATIC_LIBRARY // Explicit template instantiation // generated by autoexplicit.sh template bool igl::is_edge_manifold >(Eigen::MatrixBase > const&); // generated by autoexplicit.sh //template bool igl::is_edge_manifold(Eigen::Matrix const&, Eigen::Matrix const&); template bool igl::is_edge_manifold >(Eigen::MatrixBase > const&); template bool igl::is_edge_manifold >(Eigen::MatrixBase > const&); #endif