Apply fixes from @sloriot

Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
Mael 2022-11-07 14:03:54 +01:00 committed by GitHub
parent a929b4af09
commit 7a0fbcffd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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

View File

@ -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
{