libigl v2.5.0
Loading...
Searching...
No Matches
exact_geodesic.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) 2017 Zhongshi Jiang <jiangzs@nyu.edu>
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_EXACT_GEODESIC_H
10#define IGL_EXACT_GEODESIC_H
11
12#include "igl_inline.h"
13#include <Eigen/Core>
14
15namespace igl
16{
30 template <
31 typename DerivedV,
32 typename DerivedF,
33 typename DerivedVS,
34 typename DerivedFS,
35 typename DerivedVT,
36 typename DerivedFT,
37 typename DerivedD>
39 const Eigen::MatrixBase<DerivedV> &V,
40 const Eigen::MatrixBase<DerivedF> &F,
41 const Eigen::MatrixBase<DerivedVS> &VS,
42 const Eigen::MatrixBase<DerivedFS> &FS,
43 const Eigen::MatrixBase<DerivedVT> &VT,
44 const Eigen::MatrixBase<DerivedFT> &FT,
45 Eigen::PlainObjectBase<DerivedD> &D);
46}
47
48#ifndef IGL_STATIC_LIBRARY
49# include "exact_geodesic.cpp"
50#endif
51
52#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void exact_geodesic(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const Eigen::MatrixBase< DerivedVS > &VS, const Eigen::MatrixBase< DerivedFS > &FS, const Eigen::MatrixBase< DerivedVT > &VT, const Eigen::MatrixBase< DerivedFT > &FT, Eigen::PlainObjectBase< DerivedD > &D)
Exact geodesic algorithm for triangular mesh with the implementation from https://code....