libigl v2.5.0
Loading...
Searching...
No Matches
parallel_transport_angles.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2015 Olga Diamanti <olga.diam@gmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8
9#ifndef IGL_PARALLEL_TRANSPORT_ANGLE
10#define IGL_PARALLEL_TRANSPORT_ANGLE
11#include "igl_inline.h"
12
13#include <Eigen/Core>
14#include <vector>
15
16namespace igl {
31 template <typename DerivedV, typename DerivedF, typename DerivedK>
33 const Eigen::PlainObjectBase<DerivedV>&V,
34 const Eigen::PlainObjectBase<DerivedF>&F,
35 const Eigen::PlainObjectBase<DerivedV>&FN,
36 const Eigen::MatrixXi &E2F,
37 const Eigen::MatrixXi &F2E,
38 Eigen::PlainObjectBase<DerivedK>&K);
39
40};
41
42
43#ifndef IGL_STATIC_LIBRARY
44#include "parallel_transport_angles.cpp"
45#endif
46
47
48#endif /* defined(IGL_PARALLEL_TRANSPORT_ANGLE) */
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void parallel_transport_angles(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedV > &FN, const Eigen::MatrixXi &E2F, const Eigen::MatrixXi &F2E, Eigen::PlainObjectBase< DerivedK > &K)
Given the per-face local bases computed via igl::local_basis, this function computes the angle betwee...