57 lines
2.4 KiB
C++
57 lines
2.4 KiB
C++
|
// This file is part of libigl, a simple c++ geometry processing library.
|
||
|
//
|
||
|
// Copyright (C) 2013 Alec Jacobson <alecjacobson@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 "gaussian_curvature.h"
|
||
|
#include "internal_angles.h"
|
||
|
#include "PI.h"
|
||
|
#include <iostream>
|
||
|
template <typename DerivedV, typename DerivedF, typename DerivedK>
|
||
|
IGL_INLINE void igl::gaussian_curvature(
|
||
|
const Eigen::PlainObjectBase<DerivedV>& V,
|
||
|
const Eigen::PlainObjectBase<DerivedF>& F,
|
||
|
Eigen::PlainObjectBase<DerivedK> & K)
|
||
|
{
|
||
|
using namespace Eigen;
|
||
|
using namespace std;
|
||
|
// internal corner angles
|
||
|
Matrix<
|
||
|
typename DerivedV::Scalar,
|
||
|
DerivedF::RowsAtCompileTime,
|
||
|
DerivedF::ColsAtCompileTime> A;
|
||
|
internal_angles(V,F,A);
|
||
|
K.resize(V.rows(),1);
|
||
|
K.setConstant(V.rows(),1,2.*PI);
|
||
|
assert(A.rows() == F.rows());
|
||
|
assert(A.cols() == F.cols());
|
||
|
assert(K.rows() == V.rows());
|
||
|
assert(F.maxCoeff() < V.rows());
|
||
|
assert(K.cols() == 1);
|
||
|
const int Frows = F.rows();
|
||
|
//K_G(x_i) = (2π - ∑θj)
|
||
|
//#ifndef IGL_GAUSSIAN_CURVATURE_OMP_MIN_VALUE
|
||
|
//# define IGL_GAUSSIAN_CURVATURE_OMP_MIN_VALUE 1000
|
||
|
//#endif
|
||
|
//#pragma omp parallel for if (Frows>IGL_GAUSSIAN_CURVATURE_OMP_MIN_VALUE)
|
||
|
for(int f = 0;f<Frows;f++)
|
||
|
{
|
||
|
// throw normal at each corner
|
||
|
for(int j = 0; j < 3;j++)
|
||
|
{
|
||
|
// Q: Does this need to be critical?
|
||
|
// H: I think so, sadly. Maybe there's a way to use reduction
|
||
|
//#pragma omp critical
|
||
|
K(F(f,j),0) -= A(f,j);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#ifdef IGL_STATIC_LIBRARY
|
||
|
// Explicit template instantiation
|
||
|
template void igl::gaussian_curvature<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> >&);
|
||
|
template void igl::gaussian_curvature<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
|