123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Daniele Panozzo <daniele.panozzo@gmail.com>
- //
- // 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 "angles.h"
- #include <Eigen/Geometry>
- #include <cassert>
- template <
- typename DerivedV,
- typename DerivedF,
- typename Derivedtheta>
- void igl::angles(
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F,
- Eigen::PlainObjectBase<Derivedtheta>& theta)
- {
- theta.resize(F.rows(),F.cols());
- auto corner = [](const Eigen::PlainObjectBase<DerivedV>& x, const Eigen::PlainObjectBase<DerivedV>& y, const Eigen::PlainObjectBase<DerivedV>& z)
- {
- Eigen::RowVector3d v1 = (x-y).normalized();
- Eigen::RowVector3d v2 = (z-y).normalized();
- // http://stackoverflow.com/questions/10133957/signed-angle-between-two-vectors-without-a-reference-plane
- double s = v1.cross(v2).norm();
- double c = v1.dot(v2);
- return atan2(s, c);
- };
- for(unsigned i=0; i<F.rows(); ++i)
- {
- for(unsigned j=0; j<F.cols(); ++j)
- {
- theta(i,j) = corner(
- V.row(F(i,int(j-1+F.cols())%F.cols())),
- V.row(F(i,j)),
- V.row(F(i,(j+1+F.cols())%F.cols()))
- );
- }
- }
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- template void igl::angles<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<int, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
- #endif
|