libigl v2.5.0
Loading...
Searching...
No Matches
biharmonic_coordinates.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 Alec Jacobson <alecjacobson@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#ifndef IGL_BIHARMONIC_COORDINATES_H
9#define IGL_BIHARMONIC_COORDINATES_H
10#include "igl_inline.h"
11#include <Eigen/Dense>
12#include <vector>
13namespace igl
14{
62 template <
63 typename DerivedV,
64 typename DerivedT,
65 typename SType,
66 typename DerivedW>
68 const Eigen::MatrixBase<DerivedV> & V,
69 const Eigen::MatrixBase<DerivedT> & T,
70 const std::vector<std::vector<SType> > & S,
71 Eigen::PlainObjectBase<DerivedW> & W);
74 template <
75 typename DerivedV,
76 typename DerivedT,
77 typename SType,
78 typename DerivedW>
80 const Eigen::MatrixBase<DerivedV> & V,
81 const Eigen::MatrixBase<DerivedT> & T,
82 const std::vector<std::vector<SType> > & S,
83 const int k,
84 Eigen::PlainObjectBase<DerivedW> & W);
85
86};
87# ifndef IGL_STATIC_LIBRARY
88# include "biharmonic_coordinates.cpp"
89# endif
90#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
bool biharmonic_coordinates(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedT > &T, const std::vector< std::vector< SType > > &S, Eigen::PlainObjectBase< DerivedW > &W)
Compute "discrete biharmonic generalized barycentric coordinates" as described in "Linear Subspace De...