CGAL 4.12.1 - Triangulated Surface Mesh Simplification
|
#include <CGAL/Surface_mesh_simplification/Policies/Edge_collapse/Count_stop_predicate.h>
The class Count_stop_predicate
is a model for the StopPredicate
concept, which returns true
when the number of current edges drops below a certain threshold.
ECM | is the type of surface mesh being simplified, and must be a model of the EdgeCollapsableSurfaceMesh concept. |
Creation | |
Count_stop_predicate (size_type threshold) | |
Initializes the predicate establishing the threshold value. | |
Operations | |
bool | operator() (FT const ¤t_cost, Profile const &edge_profile, size_type initial_count, size_type current_count) const |
Returns (current_count < threshold) . More... | |
bool CGAL::Surface_mesh_simplification::Count_stop_predicate< ECM >::operator() | ( | FT const & | current_cost, |
Profile const & | edge_profile, | ||
size_type | initial_count, | ||
size_type | current_count | ||
) | const |
Returns (current_count < threshold)
.
All other parameters are ignored (but exist since this is a generic policy).