From f57d61b6e68ac9d0047361cc6fd140064b22545d Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sun, 2 Apr 2023 00:14:57 -0400 Subject: meander fixes --- lib/stitches/running_stitch.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/stitches/running_stitch.py') diff --git a/lib/stitches/running_stitch.py b/lib/stitches/running_stitch.py index 1dbfcaaf..46f3a3e9 100644 --- a/lib/stitches/running_stitch.py +++ b/lib/stitches/running_stitch.py @@ -10,6 +10,8 @@ from copy import copy import numpy as np from shapely import geometry as shgeo + +from ..debug import debug from ..utils import prng from ..utils.geometry import Point from ..utils.threading import check_stop_flag @@ -246,6 +248,7 @@ def path_to_curves(points: typing.List[Point], min_len: float): return curves +@debug.time def running_stitch(points, stitch_length, tolerance): # Turn a continuous path into a running stitch. stitches = [points[0]] -- cgit v1.2.3