libigl v2.5.0
Loading...
Searching...
No Matches
outer_vertex.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 Qingan Zhou <qnzhou@gmail.com>
4// Copyright (C) 2021 Alec Jacobson <jacobson@cs.toronto.edu>
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_COPYLEFT_CGAL_OUTER_VERTEX_H
10#define IGL_COPYLEFT_CGAL_OUTER_VERTEX_H
11#include "../../igl_inline.h"
12#include <Eigen/Core>
13namespace igl
14{
15 namespace copyleft
16 {
17 namespace cgal
18 {
31 template <
32 typename DerivedV,
33 typename DerivedF,
34 typename DerivedI,
35 typename IndexType,
36 typename DerivedA
37 >
39 const Eigen::PlainObjectBase<DerivedV> & V,
40 const Eigen::PlainObjectBase<DerivedF> & F,
41 const Eigen::PlainObjectBase<DerivedI> & I,
42 IndexType & v_index,
43 Eigen::PlainObjectBase<DerivedA> & A);
44 }
45 }
46}
47
48#ifndef IGL_STATIC_LIBRARY
49# include "outer_vertex.cpp"
50#endif
51#endif
52
#define IGL_INLINE
Definition igl_inline.h:15
void outer_vertex(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedI > &I, IndexType &v_index, Eigen::PlainObjectBase< DerivedA > &A)
Find a vertex that is reachable from infinite without crossing any faces.
Definition AABB.h:17