libigl v2.5.0
Loading...
Searching...
No Matches
outer_facet.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 Qingnan Zhou <qnzhou@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#ifndef IGL_COPYLEFT_CGAL_OUTER_FACET_H
10#define IGL_COPYLEFT_CGAL_OUTER_FACET_H
11#include "../../igl_inline.h"
12#include <Eigen/Core>
13
14namespace igl
15{
16 namespace copyleft
17 {
18 namespace cgal
19 {
37 template<
38 typename DerivedV,
39 typename DerivedF,
40 typename DerivedN,
41 typename DerivedI,
42 typename IndexType
43 >
45 const Eigen::PlainObjectBase<DerivedV> & V,
46 const Eigen::PlainObjectBase<DerivedF> & F,
47 const Eigen::PlainObjectBase<DerivedN> & N,
48 const Eigen::PlainObjectBase<DerivedI> & I,
49 IndexType & f,
50 bool & flipped);
52 template<
53 typename DerivedV,
54 typename DerivedF,
55 typename DerivedI,
56 typename IndexType
57 >
59 const Eigen::PlainObjectBase<DerivedV> & V,
60 const Eigen::PlainObjectBase<DerivedF> & F,
61 const Eigen::PlainObjectBase<DerivedI> & I,
62 IndexType & f,
63 bool & flipped);
64 }
65
66 }
67}
68
69#ifndef IGL_STATIC_LIBRARY
70# include "outer_facet.cpp"
71#endif
72#endif
#define IGL_INLINE
Definition igl_inline.h:15
void outer_facet(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedN > &N, const Eigen::PlainObjectBase< DerivedI > &I, IndexType &f, bool &flipped)
Find a facet that is reachable from infinity without crossing any faces.
Definition AABB.h:17