libigl v2.5.0
Loading...
Searching...
No Matches
extract_cells_single_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//
9#ifndef IGL_COPYLEFT_CGAL_EXTRACT_CELLS_SINGLE_COMPONENT_H
10#define IGL_COPYLEFT_CGAL_EXTRACT_CELLS_SINGLE_COMPONENT_H
11
12#include "../../igl_inline.h"
13#include <Eigen/Core>
14#include <vector>
15
16namespace igl {
17 namespace copyleft
18 {
19 namespace cgal
20 {
35 template<
36 typename DerivedV,
37 typename DerivedF,
38 typename DerivedP,
39 typename DeriveduE,
40 typename DeriveduEC,
41 typename DeriveduEE,
42 typename DerivedC >
44 const Eigen::PlainObjectBase<DerivedV>& V,
45 const Eigen::PlainObjectBase<DerivedF>& F,
46 const Eigen::PlainObjectBase<DerivedP>& P,
47 const Eigen::PlainObjectBase<DeriveduE>& uE,
48 const Eigen::PlainObjectBase<DeriveduEC>& uEC,
49 const Eigen::PlainObjectBase<DeriveduEE>& uEE,
50 Eigen::PlainObjectBase<DerivedC>& cells);
51 }
52 }
53}
54
55#ifndef IGL_STATIC_LIBRARY
56# include "extract_cells_single_component.cpp"
57#endif
58#endif
59
#define IGL_INLINE
Definition igl_inline.h:15
int extract_cells_single_component(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedP > &P, const Eigen::PlainObjectBase< DeriveduE > &uE, const Eigen::PlainObjectBase< DeriveduEC > &uEC, const Eigen::PlainObjectBase< DeriveduEE > &uEE, Eigen::PlainObjectBase< DerivedC > &cells)
Extract connected 3D space partitioned by mesh (V,F) composed of possibly multiple components (the na...
Definition AABB.h:17