libigl v2.5.0
Loading...
Searching...
No Matches
relabel_small_immersed_cells.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) 2016 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_RELABEL_SMALL_IMMERSED_CELLS
10#define IGL_RELABEL_SMALL_IMMERSED_CELLS
11
12#include "../../igl_inline.h"
13#include <Eigen/Core>
14#include <vector>
15
16namespace igl
17{
18 namespace copyleft
19 {
20 namespace cgal
21 {
35 template<
36 typename DerivedV,
37 typename DerivedF,
38 typename DerivedP,
39 typename DerivedC,
40 typename FT,
41 typename DerivedW>
43 const Eigen::PlainObjectBase<DerivedV>& V,
44 const Eigen::PlainObjectBase<DerivedF>& F,
45 const size_t num_patches,
46 const Eigen::PlainObjectBase<DerivedP>& P,
47 const size_t num_cells,
48 const Eigen::PlainObjectBase<DerivedC>& C,
49 const FT vol_threashold,
50 Eigen::PlainObjectBase<DerivedW>& W);
51 }
52 }
53}
54
55#ifndef IGL_STATIC_LIBRARY
56# include "relabel_small_immersed_cells.cpp"
57#endif
58#endif
#define IGL_INLINE
Definition igl_inline.h:15
void relabel_small_immersed_cells(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedF > &F, const size_t num_patches, const Eigen::PlainObjectBase< DerivedP > &P, const size_t num_cells, const Eigen::PlainObjectBase< DerivedC > &C, const FT vol_threashold, Eigen::PlainObjectBase< DerivedW > &W)
Relabel winding numbers of small immersed cells.
Definition AABB.h:17