libigl v2.5.0
Loading...
Searching...
No Matches
isolines.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_H
11#define IGL_ISOLINES_H
12#include "igl_inline.h"
13
14#include <Eigen/Core>
15
16
17namespace igl
18{
39 template <
40 typename DerivedV,
41 typename DerivedF,
42 typename DerivedS,
43 typename Derivedvals,
44 typename DerivediV,
45 typename DerivediE,
46 typename DerivedI>
48 const Eigen::MatrixBase<DerivedV> & V,
49 const Eigen::MatrixBase<DerivedF> & F,
50 const Eigen::MatrixBase<DerivedS> & S,
51 const Eigen::MatrixBase<Derivedvals> & vals,
52 Eigen::PlainObjectBase<DerivediV> & iV,
53 Eigen::PlainObjectBase<DerivediE> & iE,
54 Eigen::PlainObjectBase<DerivedI> & I);
55}
56
57#ifndef IGL_STATIC_LIBRARY
58# include "isolines.cpp"
59#endif
60
61#endif
Definition AABB.h:17
void isolines(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const Eigen::MatrixBase< DerivedS > &S, const Eigen::MatrixBase< Derivedvals > &vals, Eigen::PlainObjectBase< DerivediV > &iV, Eigen::PlainObjectBase< DerivediE > &iE, Eigen::PlainObjectBase< DerivedI > &I)
Compute isolines of a scalar field on a triangle mesh.