You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
// 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 "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
|
|
|
|
|