libigl v2.5.0
Loading...
Searching...
No Matches
edge_flaps.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// Copyright (C) 2020 Alec Jacobson <alecjacobson@gmail.com>
5//
6// This Source Code Form is subject to the terms of the Mozilla Public License
7// v. 2.0. If a copy of the MPL was not distributed with this file, You can
8// obtain one at http://mozilla.org/MPL/2.0/.
9#ifndef IGL_EDGE_FLAPS_H
10#define IGL_EDGE_FLAPS_H
11#include "igl_inline.h"
12#include <Eigen/Core>
13namespace igl
14{
38 template <
39 typename DerivedF,
40 typename DeriveduE,
41 typename DerivedEMAP,
42 typename DerivedEF,
43 typename DerivedEI>
45 const Eigen::MatrixBase<DerivedF> & F,
46 const Eigen::MatrixBase<DeriveduE> & uE,
47 const Eigen::MatrixBase<DerivedEMAP> & EMAP,
48 Eigen::PlainObjectBase<DerivedEF> & EF,
49 Eigen::PlainObjectBase<DerivedEI> & EI);
51 template <
52 typename DerivedF,
53 typename DeriveduE,
54 typename DerivedEMAP,
55 typename DerivedEF,
56 typename DerivedEI>
58 const Eigen::MatrixBase<DerivedF> & F,
59 Eigen::PlainObjectBase<DeriveduE> & uE,
60 Eigen::PlainObjectBase<DerivedEMAP> & EMAP,
61 Eigen::PlainObjectBase<DerivedEF> & EF,
62 Eigen::PlainObjectBase<DerivedEI> & EI);
63}
64#ifndef IGL_STATIC_LIBRARY
65# include "edge_flaps.cpp"
66#endif
67
68#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:18
void edge_flaps(const Eigen::MatrixBase< DerivedF > &F, const Eigen::MatrixBase< DeriveduE > &uE, const Eigen::MatrixBase< DerivedEMAP > &EMAP, Eigen::PlainObjectBase< DerivedEF > &EF, Eigen::PlainObjectBase< DerivedEI > &EI)
Determine "edge flaps": two faces on either side of a unique edge (assumes edge-manifold mesh).