| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2016 Alec Jacobson <[email protected]>
- //
- // 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/.
- #include "max_faces_stopping_condition.h"
- IGL_INLINE void igl::max_faces_stopping_condition(
- int & m,
- const int orig_m,
- const int max_m,
- decimate_stopping_condition_callback & stopping_condition)
- {
- stopping_condition =
- [orig_m,max_m,&m](
- const Eigen::MatrixXd &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const Eigen::VectorXi &,
- const Eigen::MatrixXi &,
- const Eigen::MatrixXi &,
- const igl::min_heap< std::tuple<double,int,int> > & ,
- const Eigen::VectorXi & ,
- const Eigen::MatrixXd &,
- const int,
- const int,
- const int,
- const int f1,
- const int f2)->bool
- {
- // Only subtract if we're collapsing a real face
- if(f1 < orig_m) m-=1;
- if(f2 < orig_m) m-=1;
- return m<=(int)max_m;
- };
- }
- IGL_INLINE igl::decimate_stopping_condition_callback
- igl::max_faces_stopping_condition(
- int & m,
- const int orig_m,
- const int max_m)
- {
- decimate_stopping_condition_callback stopping_condition;
- max_faces_stopping_condition(m,orig_m,max_m,stopping_condition);
- return stopping_condition;
- }
|