From 96a2a0083d4b9c859e1143a93d616de2aca14cfe Mon Sep 17 00:00:00 2001 From: HugoMVale <57530119+HugoMVale@users.noreply.github.com> Date: Thu, 29 Aug 2024 23:24:18 +0200 Subject: [PATCH] improve doc --- src/polykin/math/filters.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/polykin/math/filters.py b/src/polykin/math/filters.py index 3da343c..aaa4470 100644 --- a/src/polykin/math/filters.py +++ b/src/polykin/math/filters.py @@ -14,10 +14,10 @@ def simplify_polyline(points: FloatMatrix, tol: float ) -> FloatMatrix: r"""Simplify an N-dimensional polyline using the Ramer-Douglas-Peucker - algorithm. ](https://en.wikipedia.org/wiki/Ramer%E2%80%93Douglas%E2%80%93Peucker_algorithm). + algorithm. - The RDP algorithm is considered the best global polyline simplification - algorithm. This particular implementation is based on the (classical) + The Ramer-Douglas-Peucker algorithm is considered the best global polyline + simplification algorithm. This particular implementation is based on the recursive version of the method. **References**