libigl v2.5.0
Loading...
Searching...
No Matches
isolines_intrinsic.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) 2023 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
9
10#ifndef IGL_ISOLINES_INTRINSIC_H
11#define IGL_ISOLINES_INTRINSIC_H
12#include "igl_inline.h"
13
14#include <Eigen/Core>
15
16
17namespace igl
18{
38 template <
39 typename DerivedF,
40 typename DerivedS,
41 typename Derivedvals,
42 typename DerivediB,
43 typename DerivediFI,
44 typename DerivediE,
45 typename DerivedI>
47 const Eigen::MatrixBase<DerivedF> & F,
48 const Eigen::MatrixBase<DerivedS> & S,
49 const Eigen::MatrixBase<Derivedvals> & vals,
50 Eigen::PlainObjectBase<DerivediB> & iB,
51 Eigen::PlainObjectBase<DerivediFI> & iFI,
52 Eigen::PlainObjectBase<DerivediE> & iE,
53 Eigen::PlainObjectBase<DerivedI> & I);
69 template <
70 typename DerivedF,
71 typename DerivedS,
72 typename DeriveduE,
73 typename DerivedEMAP,
74 typename DeriveduEC,
75 typename DeriveduEE,
76 typename DerivediB,
77 typename DerivediFI,
78 typename DerivediE>
80 const Eigen::MatrixBase<DerivedF> & F,
81 const Eigen::MatrixBase<DerivedS> & S,
82 const Eigen::MatrixBase<DeriveduE> & uE,
83 const Eigen::MatrixBase<DerivedEMAP> & EMAP,
84 const Eigen::MatrixBase<DeriveduEC> & uEC,
85 const Eigen::MatrixBase<DeriveduEE> & uEE,
86 const typename DerivedS::Scalar val,
87 Eigen::PlainObjectBase<DerivediB> & iB,
88 Eigen::PlainObjectBase<DerivediFI> & iFI,
89 Eigen::PlainObjectBase<DerivediE> & iE);
90}
91
92#ifndef IGL_STATIC_LIBRARY
93# include "isolines_intrinsic.cpp"
94#endif
95
96#endif
97
Definition AABB.h:17
void isolines_intrinsic(const Eigen::MatrixBase< DerivedF > &F, const Eigen::MatrixBase< DerivedS > &S, const Eigen::MatrixBase< Derivedvals > &vals, Eigen::PlainObjectBase< DerivediB > &iB, Eigen::PlainObjectBase< DerivediFI > &iFI, Eigen::PlainObjectBase< DerivediE > &iE, Eigen::PlainObjectBase< DerivedI > &I)
Compute isolines of a scalar field on a triangle mesh intrinsically.