// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2015 Alec Jacobson // 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 "internal_angles.h" #include "edge_lengths.h" #include "parallel_for.h" #include "get_seconds.h" template IGL_INLINE void igl::internal_angles( const Eigen::PlainObjectBase& V, const Eigen::PlainObjectBase& F, Eigen::PlainObjectBase & K) { using namespace Eigen; using namespace std; typedef typename DerivedV::Scalar Scalar; if(F.cols() == 3) { // Edge lengths Matrix< Scalar, DerivedF::RowsAtCompileTime, DerivedF::ColsAtCompileTime> L; edge_lengths(V,F,L); assert(F.cols() == 3 && "F should contain triangles"); internal_angles(L,K); }else { assert(V.cols() == 3 && "If F contains non-triangle facets, V must be 3D"); K.resize(F.rows(),F.cols()); auto corner = []( const typename DerivedV::ConstRowXpr & x, const typename DerivedV::ConstRowXpr & y, const typename DerivedV::ConstRowXpr & z) { typedef Eigen::Matrix RowVector3S; RowVector3S v1 = (x-y).normalized(); RowVector3S v2 = (z-y).normalized(); // http://stackoverflow.com/questions/10133957/signed-angle-between-two-vectors-without-a-reference-plane Scalar s = v1.cross(v2).norm(); Scalar c = v1.dot(v2); return atan2(s, c); }; for(unsigned i=0; i IGL_INLINE void igl::internal_angles( const Eigen::PlainObjectBase& L, Eigen::PlainObjectBase & K) { typedef typename DerivedL::Index Index; assert(L.cols() == 3 && "Edge-lengths should come from triangles"); const Index m = L.rows(); K.resize(m,3); parallel_for( m, [&L,&K](const Index f) { for(size_t d = 0;d<3;d++) { const auto & s1 = L(f,d); const auto & s2 = L(f,(d+1)%3); const auto & s3 = L(f,(d+2)%3); K(f,d) = acos((s3*s3 + s2*s2 - s1*s1)/(2.*s3*s2)); } }, 1000l); } #ifdef IGL_STATIC_LIBRARY // Explicit template specialization // generated by autoexplicit.sh template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); template void igl::internal_angles, Eigen::Matrix, Eigen::Matrix >(Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase > const&, Eigen::PlainObjectBase >&); #endif