libigl v2.5.0
Loading...
Searching...
No Matches
on_boundary.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) 2013 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_ON_BOUNDARY_H
9#define IGL_ON_BOUNDARY_H
10#include "igl_inline.h"
11#include <Eigen/Dense>
12
13#include <vector>
14
15namespace igl
16{
27 template <typename IntegerT>
29 const std::vector<std::vector<IntegerT> > & T,
30 std::vector<bool> & I,
31 std::vector<std::vector<bool> > & C);
33 template <typename DerivedT, typename DerivedI, typename DerivedC>
35 const Eigen::MatrixBase<DerivedT>& T,
36 Eigen::PlainObjectBase<DerivedI>& I,
37 Eigen::PlainObjectBase<DerivedC>& C);
38}
39
40#ifndef IGL_STATIC_LIBRARY
41# include "on_boundary.cpp"
42#endif
43
44#endif
45
46
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void on_boundary(const std::vector< std::vector< IntegerT > > &T, std::vector< bool > &I, std::vector< std::vector< bool > > &C)
Determine boundary facets of mesh elements stored in T.