12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Qingnan Zhou <qnzhou@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- //
- #ifndef IGL_CGAL_EXTRACT_CELLS
- #define IGL_CGAL_EXTRACT_CELLS
- #include "../igl_inline.h"
- #include <Eigen/Core>
- namespace igl {
- namespace cgal {
- template<
- typename DerivedV,
- typename DerivedF,
- typename DerivedP,
- typename DeriveduE,
- typename uE2EType,
- typename DerivedEMAP,
- typename DerivedC >
- IGL_INLINE size_t 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 std::vector<std::vector<uE2EType> >& uE2E,
- const Eigen::PlainObjectBase<DerivedEMAP>& EMAP,
- Eigen::PlainObjectBase<DerivedC>& cells);
- template<
- typename DerivedV,
- typename DerivedF,
- typename DerivedP,
- typename DerivedE,
- typename DeriveduE,
- typename uE2EType,
- typename DerivedEMAP,
- typename DerivedC >
- IGL_INLINE size_t extract_cells(
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F,
- const Eigen::PlainObjectBase<DerivedP>& P,
- const Eigen::PlainObjectBase<DerivedE>& E,
- const Eigen::PlainObjectBase<DeriveduE>& uE,
- const std::vector<std::vector<uE2EType> >& uE2E,
- const Eigen::PlainObjectBase<DerivedEMAP>& EMAP,
- Eigen::PlainObjectBase<DerivedC>& cells);
- template<
- typename DerivedV,
- typename DerivedF,
- typename DerivedC >
- IGL_INLINE size_t extract_cells(
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedC>& cells);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "extract_cells.cpp"
- #endif
- #endif
|