libigl v2.5.0
Loading...
Searching...
No Matches
is_boundary_edge.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//
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 IS_BOUNDARY_EDGE_H
9#define IS_BOUNDARY_EDGE_H
10#include <Eigen/Dense>
11
12namespace igl
13{
21 template <
22 typename DerivedF,
23 typename DerivedE,
24 typename DerivedB>
26 const Eigen::PlainObjectBase<DerivedE> & E,
27 const Eigen::PlainObjectBase<DerivedF> & F,
28 Eigen::PlainObjectBase<DerivedB> & B);
33 template <
34 typename DerivedF,
35 typename DerivedE,
36 typename DerivedB,
37 typename DerivedEMAP>
39 const Eigen::PlainObjectBase<DerivedF> & F,
40 Eigen::PlainObjectBase<DerivedB> & B,
41 Eigen::PlainObjectBase<DerivedE> & E,
42 Eigen::PlainObjectBase<DerivedEMAP> & EMAP);
43}
44
45#ifndef IGL_STATIC_LIBRARY
46# include "is_boundary_edge.cpp"
47#endif
48
49#endif
Definition AABB.h:17
void is_boundary_edge(const Eigen::PlainObjectBase< DerivedE > &E, const Eigen::PlainObjectBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedB > &B)
Determine for each edge E if it is a "boundary edge" in F.