Merge pull request #8119 from afabri/Polyline_simplification-doc_bug-GF

Polyline_simplification: fix documentation
This commit is contained in:
Laurent Rineau 2024-04-10 18:02:53 +02:00
commit 35751442ee
1 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public :
/// Initializes it with the given threshold value.
Stop_above_cost_threshold( double threshold ) : mThres(threshold) {}
/// Returns `true` when `cost` is smaller or equal than the threshold.
/// Returns `true` when `cost` is greater or equal than the threshold.
/// \tparam CDT must be `CGAL::Constrained_Delaunay_triangulation_2` with a vertex type that
/// is model of `PolylineSimplificationVertexBase_2`.
@ -61,4 +61,3 @@ private:
} //namespace CGAL
#endif // CGAL_POLYLINE_SIMPLIFICATION_2_STOP_ABOVE_COST_THRESHOLD_H