libigl v2.5.0
Loading...
Searching...
No Matches
component_inside_component.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#ifndef IGL_COPYLEFT_CGAL_COMONENT_INSIDE_COMPONENT
9#define IGL_COPYLEFT_CGAL_COMONENT_INSIDE_COMPONENT
10
11#include "../../igl_inline.h"
12#include <Eigen/Core>
13#include <vector>
14
15namespace igl {
16 namespace copyleft
17 {
18 namespace cgal
19 {
34 template<typename DerivedV, typename DerivedF, typename DerivedI>
36 const Eigen::PlainObjectBase<DerivedV>& V1,
37 const Eigen::PlainObjectBase<DerivedF>& F1,
38 const Eigen::PlainObjectBase<DerivedI>& I1,
39 const Eigen::PlainObjectBase<DerivedV>& V2,
40 const Eigen::PlainObjectBase<DerivedF>& F2,
41 const Eigen::PlainObjectBase<DerivedI>& I2);
43 template<typename DerivedV, typename DerivedF>
45 const Eigen::PlainObjectBase<DerivedV>& V1,
46 const Eigen::PlainObjectBase<DerivedF>& F1,
47 const Eigen::PlainObjectBase<DerivedV>& V2,
48 const Eigen::PlainObjectBase<DerivedF>& F2);
49 }
50 }
51}
52
53#ifndef IGL_STATIC_LIBRARY
54#include "component_inside_component.cpp"
55#endif
56#endif
#define IGL_INLINE
Definition igl_inline.h:15
bool component_inside_component(const Eigen::PlainObjectBase< DerivedV > &V1, const Eigen::PlainObjectBase< DerivedF > &F1, const Eigen::PlainObjectBase< DerivedI > &I1, const Eigen::PlainObjectBase< DerivedV > &V2, const Eigen::PlainObjectBase< DerivedF > &F2, const Eigen::PlainObjectBase< DerivedI > &I2)
Determine if connected facet component (V1, F1, I1) is inside of connected facet component (V2,...
Definition AABB.h:17