| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 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/.
- #ifndef IGL_MAX_FACES_STOPPING_CONDITION_H
- #define IGL_MAX_FACES_STOPPING_CONDITION_H
- #include "igl_inline.h"
- #include "decimate_callback_types.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
- ///
- /// @param[in] m reference to working variable initially should be set to current
- /// number of faces.
- /// @param[in] orig_m number (size) of original face list _**not**_ including any
- /// faces added to handle phony boundary faces connecting to point at
- /// infinity. For closed meshes it's safe to set this to F.rows()
- /// @param[in] max_m maximum number of faces
- /// @param[out] stopping_condition
- ///
- /// See decimate.h for more details
- IGL_INLINE void max_faces_stopping_condition(
- int & m,
- const int orig_m,
- const int max_m,
- decimate_stopping_condition_callback & stopping_condition);
- /// \overload
- IGL_INLINE decimate_stopping_condition_callback
- max_faces_stopping_condition(
- int & m,
- const int orign_m,
- const int max_m);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "max_faces_stopping_condition.cpp"
- #endif
- #endif
|