summaryrefslogtreecommitdiff
path: root/lib/stitches/tangential_fill_stitch_pattern_creator.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2022-05-02 23:48:46 -0400
committerKaalleen <reni@allenka.de>2022-05-04 19:18:33 +0200
commit68ee0eea8733d613543a28627bd21a4481da8b46 (patch)
tree14fe4f30b08c2c4a1df61d646313e58988a09610 /lib/stitches/tangential_fill_stitch_pattern_creator.py
parent056a1cc45d3744c44314572e710fcc60b548fd23 (diff)
add clockwise option
Diffstat (limited to 'lib/stitches/tangential_fill_stitch_pattern_creator.py')
-rw-r--r--lib/stitches/tangential_fill_stitch_pattern_creator.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/stitches/tangential_fill_stitch_pattern_creator.py b/lib/stitches/tangential_fill_stitch_pattern_creator.py
index 9b59fa07..2556d58c 100644
--- a/lib/stitches/tangential_fill_stitch_pattern_creator.py
+++ b/lib/stitches/tangential_fill_stitch_pattern_creator.py
@@ -24,7 +24,6 @@ nearest_neighbor_tuple = namedtuple(
)
-@debug.time
def get_nearest_points_closer_than_thresh(travel_line, next_line, threshold):
"""
Find the first point along travel_line that is within threshold of next_line.
@@ -108,7 +107,6 @@ def create_nearest_points_list(
return children_nearest_points
-@debug.time
def connect_raster_tree_from_inner_to_outer(tree, node, offset, stitch_distance, min_stitch_distance, starting_point,
offset_by_half, avoid_self_crossing, forward=True):
"""
@@ -213,13 +211,6 @@ def connect_raster_tree_from_inner_to_outer(tree, node, offset, stitch_distance,
return LineString(result_coords)
-def orient_linear_ring(ring):
- if not ring.is_ccw:
- return LinearRing(reversed(ring.coords))
- else:
- return ring
-
-
def reorder_linear_ring(ring, start):
distances = ring - start
start_index = np.argmin(np.linalg.norm(distances, axis=1))
@@ -245,9 +236,6 @@ def interpolate_linear_rings(ring1, ring2, max_stitch_length, start=None):
Return value: Path interpolated between two LinearRings, as a LineString.
"""
- ring1 = orient_linear_ring(ring1)
- ring2 = orient_linear_ring(ring2)
-
# Resample the two LinearRings so that they are the same number of points
# long. Then take the corresponding points in each ring and interpolate
# between them, gradually going more toward ring2.