We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60cf224 commit 6b8d2e5Copy full SHA for 6b8d2e5
scripts/benchmark/src/benchmark/rdp.py
@@ -1,6 +1,7 @@
1
"""Benchmarks for Ramer-Douglas-Peucher."""
2
3
import shapely
4
+
5
from polyshell import reduce_polygon
6
7
scripts/benchmark/src/benchmark/vw.py
@@ -1,8 +1,9 @@
"""Benchmarks for Visvalingam-Whyatt."""
-from polyshell import reduce_polygon
from simplification.cutil import simplify_coords_vwp
+from polyshell import reduce_polygon
8
def polyshell_vw(poly, eps):
9
return reduce_polygon(poly, "epsilon", eps, method="vw")
0 commit comments