libigl v2.5.0
Loading...
Searching...
No Matches
is_edge_manifold.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) 2014 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_IS_EDGE_MANIFOLD_H
9#define IGL_IS_EDGE_MANIFOLD_H
10#include "igl_inline.h"
11
12#include <Eigen/Core>
13
14namespace igl
15{
23 template <typename DerivedF>
25 const Eigen::MatrixBase<DerivedF>& F);
34 template <
35 typename DerivedF,
36 typename DerivedBF,
37 typename DerivedE,
38 typename DerivedEMAP,
39 typename DerivedBE>
41 const Eigen::MatrixBase<DerivedF>& F,
42 Eigen::PlainObjectBase<DerivedBF>& BF,
43 Eigen::PlainObjectBase<DerivedE>& E,
44 Eigen::PlainObjectBase<DerivedEMAP>& EMAP,
45 Eigen::PlainObjectBase<DerivedBE>& BE);
47 template <
48 typename DerivedF,
49 typename DerivedEMAP,
50 typename DerivedBF,
51 typename DerivedBE>
53 const Eigen::MatrixBase<DerivedF>& F,
54 const typename DerivedF::Index ne,
55 const Eigen::MatrixBase<DerivedEMAP>& EMAP,
56 Eigen::PlainObjectBase<DerivedBF>& BF,
57 Eigen::PlainObjectBase<DerivedBE>& BE);
58}
59
60#ifndef IGL_STATIC_LIBRARY
61# include "is_edge_manifold.cpp"
62#endif
63
64#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
bool is_edge_manifold(const Eigen::MatrixBase< DerivedF > &F)
Check if the mesh is edge-manifold (every edge is incident one one face (boundary) or two oppositely ...