mirror of https://github.com/CGAL/cgal
Apply fixes from @sloriot
Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
parent
a929b4af09
commit
7a0fbcffd2
|
|
@ -12,7 +12,7 @@ which returns `true` when the relation between the initial and current number of
|
|||
|
||||
\tparam TriangleMesh is the type of surface mesh being simplified, and must be a model of the `MutableFaceGraph` and `HalfedgeListGraph` concepts.
|
||||
|
||||
\sa `CGAL::Surface_mesh_simplification::Edge_count_ratio_stop_predicate<TriangleMesh>`
|
||||
\sa `CGAL::Surface_mesh_simplification::Edge_count_stop_predicate<TriangleMesh>`
|
||||
\sa `CGAL::Surface_mesh_simplification::Face_count_ratio_stop_predicate<TriangleMesh>`
|
||||
*/
|
||||
template< typename TriangleMesh>
|
||||
|
|
|
|||
|
|
@ -8,12 +8,12 @@ namespace Surface_mesh_simplification {
|
|||
\cgalModels `StopPredicate`
|
||||
|
||||
The class `Face_count_ratio_stop_predicate` is a model for the `StopPredicate` concept
|
||||
which returns `true` when the relation between the initial and current number of edges drops below a certain ratio.
|
||||
which returns `true` when the relation between the initial and current number of faces drops below a certain ratio.
|
||||
|
||||
\tparam TriangleMesh is the type of surface mesh being simplified, and must be a model of the `MutableFaceGraph` and `HalfedgeListGraph` concepts.
|
||||
|
||||
\sa `CGAL::Surface_mesh_simplification::Edge_count_ratio_stop_predicate<TriangleMesh>`
|
||||
\sa `CGAL::Surface_mesh_simplification::Face_count_ratio_stop_predicate<TriangleMesh>`
|
||||
\sa `CGAL::Surface_mesh_simplification::Face_count_stop_predicate<TriangleMesh>`
|
||||
*/
|
||||
template< typename TriangleMesh>
|
||||
class Face_count_ratio_stop_predicate
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
namespace CGAL {
|
||||
namespace Surface_mesh_simplification {
|
||||
|
||||
// Stops when the ratio of initial to current number of edges is below some value.
|
||||
// Stops when the ratio of initial to current number of faces is below some value.
|
||||
template<class TM_>
|
||||
class Face_count_ratio_stop_predicate
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue