// 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/. #include "oriented_facets.h" #include "doublearea.h" #include "per_edge_normals.h" #include "get_seconds.h" #include "per_face_normals.h" #include "unique_simplices.h" #include template < typename DerivedV, typename DerivedF, typename DerivedFN, typename DerivedN, typename DerivedE, typename DerivedEMAP> IGL_INLINE void igl::per_edge_normals( const Eigen::MatrixBase& V, const Eigen::MatrixBase& F, const PerEdgeNormalsWeightingType weighting, const Eigen::MatrixBase& FN, Eigen::PlainObjectBase & N, Eigen::PlainObjectBase & E, Eigen::PlainObjectBase & EMAP) { using namespace Eigen; using namespace std; assert(F.cols() == 3 && "Faces must be triangles"); // number of faces const int m = F.rows(); // All occurrences of directed edges MatrixXi allE; oriented_facets(F,allE); // Find unique undirected edges and mapping VectorXi _; unique_simplices(allE,E,_,EMAP); // now sort(allE,2) == E(EMAP,:), that is, if EMAP(i) = j, then E.row(j) is // the undirected edge corresponding to the directed edge allE.row(i). Eigen::VectorXd W; switch(weighting) { case PER_EDGE_NORMALS_WEIGHTING_TYPE_UNIFORM: // Do nothing break; default: assert(false && "Unknown weighting type"); case PER_EDGE_NORMALS_WEIGHTING_TYPE_DEFAULT: case PER_EDGE_NORMALS_WEIGHTING_TYPE_AREA: { doublearea(V,F,W); break; } } N.setZero(E.rows(),3); for(int f = 0;f IGL_INLINE void igl::per_edge_normals( const Eigen::MatrixBase& V, const Eigen::MatrixBase& F, const PerEdgeNormalsWeightingType weighting, Eigen::PlainObjectBase & N, Eigen::PlainObjectBase & E, Eigen::PlainObjectBase & EMAP) { Eigen::Matrix FN; per_face_normals(V,F,FN); return per_edge_normals(V,F,weighting,FN,N,E,EMAP); } template < typename DerivedV, typename DerivedF, typename DerivedN, typename DerivedE, typename DerivedEMAP> IGL_INLINE void igl::per_edge_normals( const Eigen::MatrixBase& V, const Eigen::MatrixBase& F, Eigen::PlainObjectBase & N, Eigen::PlainObjectBase & E, Eigen::PlainObjectBase & EMAP) { return per_edge_normals(V,F,PER_EDGE_NORMALS_WEIGHTING_TYPE_DEFAULT,N,E,EMAP); } #ifdef IGL_STATIC_LIBRARY // Explicit template instantiation // generated by autoexplicit.sh template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); // generated by autoexplicit.sh template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); // generated by autoexplicit.sh template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); // generated by autoexplicit.sh template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, igl::PerEdgeNormalsWeightingType, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); template void igl::per_edge_normals, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix >(Eigen::MatrixBase > const&, Eigen::MatrixBase > const&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&, Eigen::PlainObjectBase >&); #endif