12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Alec Jacobson <alecjacobson@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_MAX_FACES_STOPPING_CONDITION_H
- #define IGL_MAX_FACES_STOPPING_CONDITION_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <vector>
- #include <set>
- #include <functional>
- namespace igl
- {
- // Stopping condition function compatible with igl::decimate. The outpute
- // function handle will return true if number of faces is less than max_m
- //
- // Inputs:
- // m reference to working variable initially should be set to current
- // number of faces.
- // max_m maximum number of faces
- // Outputs:
- // stopping_condition
- //
- IGL_INLINE void max_faces_stopping_condition(
- int & m,
- const int max_m,
- std::function<bool(
- const Eigen::MatrixXd &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const Eigen::VectorXi &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const std::set<std::pair<double,int> > &,
- const std::vector<std::set<std::pair<double,int> >::iterator > &,
- const Eigen::MatrixXd &,
- const int,
- const int,
- const int,
- const int,
- const int)> & stopping_condition);
- IGL_INLINE
- std::function<bool(
- const Eigen::MatrixXd &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const Eigen::VectorXi &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const std::set<std::pair<double,int> > &,
- const std::vector<std::set<std::pair<double,int> >::iterator > &,
- const Eigen::MatrixXd &,
- const int,
- const int,
- const int,
- const int,
- const int)>
- max_faces_stopping_condition(
- int & m,
- const int max_m);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "max_faces_stopping_condition.cpp"
- #endif
- #endif
|