// 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 "internal_angles.h" #include "edge_lengths.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; // Edge lengths Matrix< typename DerivedV::Scalar, DerivedF::RowsAtCompileTime, DerivedF::ColsAtCompileTime> L; edge_lengths(V,F,L); assert(F.cols() == 3 && "F should contain triangles"); internal_angles(L,K); } template IGL_INLINE void igl::internal_angles( const Eigen::PlainObjectBase& L, Eigen::PlainObjectBase & K) { assert(L.cols() == 3 && "Edge-lengths should come from triangles"); const size_t m = L.rows(); K.resize(m,3); //for(int d = 0;d<3;d++) //{ // const auto & s1 = L.col(d).array(); // const auto & s2 = L.col((d+1)%3).array(); // const auto & s3 = L.col((d+2)%3).array(); // K.col(d) = ((s3.square() + s2.square() - s1.square())/(2.*s3*s2)).acos(); //} // Minimum number of iterms per openmp thread #ifndef IGL_OMP_MIN_VALUE # define IGL_OMP_MIN_VALUE 1000 #endif #pragma omp parallel for if (m>IGL_OMP_MIN_VALUE) for(size_t f = 0;f, 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