libigl v2.5.0
Loading...
Searching...
No Matches
outer_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 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_EDGE_H
10#define IGL_COPYLEFT_CGAL_OUTER_EDGE_H
11#include "../../igl_inline.h"
12#include <Eigen/Core>
13namespace igl
14{
15 namespace copyleft
16 {
17 namespace cgal
18 {
33 template<
34 typename DerivedV,
35 typename DerivedF,
36 typename DerivedI,
37 typename IndexType,
38 typename DerivedA
39 >
41 const Eigen::PlainObjectBase<DerivedV> & V,
42 const Eigen::PlainObjectBase<DerivedF> & F,
43 const Eigen::PlainObjectBase<DerivedI> & I,
44 IndexType & v1,
45 IndexType & v2,
46 Eigen::PlainObjectBase<DerivedA> & A);
47
48 }
49 }
50}
51
52#ifndef IGL_STATIC_LIBRARY
53# include "outer_edge.cpp"
54#endif
55#endif
56
#define IGL_INLINE
Definition igl_inline.h:15
void outer_edge(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedI > &I, IndexType &v1, IndexType &v2, Eigen::PlainObjectBase< DerivedA > &A)
Find an edge that is reachable from infinity without crossing any faces.
Definition AABB.h:17