summaryrefslogtreecommitdiff
path: root/lib/stitches/auto_fill.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitches/auto_fill.py')
-rw-r--r--lib/stitches/auto_fill.py48
1 files changed, 16 insertions, 32 deletions
diff --git a/lib/stitches/auto_fill.py b/lib/stitches/auto_fill.py
index 1d72e710..65b1e06d 100644
--- a/lib/stitches/auto_fill.py
+++ b/lib/stitches/auto_fill.py
@@ -69,10 +69,8 @@ def auto_fill(shape,
if not graph_is_valid(fill_stitch_graph, shape, max_stitch_length):
return fallback(shape, running_stitch_length)
- travel_graph = build_travel_graph(
- fill_stitch_graph, shape, angle, underpath)
- path = find_stitch_path(
- fill_stitch_graph, travel_graph, starting_point, ending_point)
+ travel_graph = build_travel_graph(fill_stitch_graph, shape, angle, underpath)
+ path = find_stitch_path(fill_stitch_graph, travel_graph, starting_point, ending_point)
result = path_to_stitches(path, travel_graph, fill_stitch_graph, angle, row_spacing,
max_stitch_length, running_stitch_length, staggers, skip_last)
@@ -181,8 +179,7 @@ def insert_node(graph, shape, point):
if key == "outline":
edges.append(((start, end), data))
- edge, data = min(edges, key=lambda edge_data: shgeo.LineString(
- edge_data[0]).distance(projected_point))
+ edge, data = min(edges, key=lambda edge_data: shgeo.LineString(edge_data[0]).distance(projected_point))
graph.remove_edge(*edge, key="outline")
graph.add_edge(edge[0], node, key="outline", **data)
@@ -195,8 +192,7 @@ def tag_nodes_with_outline_and_projection(graph, shape, nodes):
outline_index = which_outline(shape, node)
outline_projection = project(shape, node, outline_index)
- graph.add_node(node, outline=outline_index,
- projection=outline_projection)
+ graph.add_node(node, outline=outline_index, projection=outline_projection)
def add_boundary_travel_nodes(graph, shape):
@@ -215,11 +211,9 @@ def add_boundary_travel_nodes(graph, shape):
# resolution. A pixel is around a quarter of a millimeter.
for i in range(1, int(length)):
subpoint = segment.interpolate(i)
- graph.add_node((subpoint.x, subpoint.y), projection=outline.project(
- subpoint), outline=outline_index)
+ graph.add_node((subpoint.x, subpoint.y), projection=outline.project(subpoint), outline=outline_index)
- graph.add_node((point.x, point.y), projection=outline.project(
- point), outline=outline_index)
+ graph.add_node((point.x, point.y), projection=outline.project(point), outline=outline_index)
prev = point
@@ -303,8 +297,7 @@ def build_travel_graph(fill_stitch_graph, shape, fill_stitch_angle, underpath):
graph.add_nodes_from(fill_stitch_graph.nodes(data=True))
if underpath:
- boundary_points, travel_edges = build_travel_edges(
- shape, fill_stitch_angle)
+ boundary_points, travel_edges = build_travel_edges(shape, fill_stitch_angle)
# This will ensure that a path traveling inside the shape can reach its
# target on the outline, which will be one of the points added above.
@@ -356,8 +349,7 @@ def process_travel_edges(graph, fill_stitch_graph, shape, travel_edges):
# This makes the distance calculations below a bit faster. We're
# not looking for high precision anyway.
- outline = shape.boundary.simplify(
- 0.5 * PIXELS_PER_MM, preserve_topology=False)
+ outline = shape.boundary.simplify(0.5 * PIXELS_PER_MM, preserve_topology=False)
for ls in travel_edges:
# In most cases, ls will be a simple line segment. If we're
@@ -435,12 +427,9 @@ def build_travel_edges(shape, fill_angle):
else:
scale = 1.0
- grating1 = travel_grating(
- shape, fill_angle + math.pi / 4, scale * 2 * PIXELS_PER_MM)
- grating2 = travel_grating(
- shape, fill_angle - math.pi / 4, scale * 2 * PIXELS_PER_MM)
- grating3 = travel_grating(
- shape, fill_angle - math.pi / 2, scale * math.sqrt(2) * PIXELS_PER_MM)
+ grating1 = travel_grating(shape, fill_angle + math.pi / 4, scale * 2 * PIXELS_PER_MM)
+ grating2 = travel_grating(shape, fill_angle - math.pi / 4, scale * 2 * PIXELS_PER_MM)
+ grating3 = travel_grating(shape, fill_angle - math.pi / 2, scale * math.sqrt(2) * PIXELS_PER_MM)
debug.add_layer("auto-fill travel")
debug.log_line_strings(grating1, "grating1")
@@ -451,12 +440,10 @@ def build_travel_edges(shape, fill_angle):
for ls in mls.geoms
for coord in ls.coords]
- diagonal_edges = ensure_multi_line_string(
- grating1.symmetric_difference(grating2))
+ diagonal_edges = ensure_multi_line_string(grating1.symmetric_difference(grating2))
# without this, floating point inaccuracies prevent the intersection points from lining up perfectly.
- vertical_edges = ensure_multi_line_string(
- snap(grating3.difference(grating1), diagonal_edges, 0.005))
+ vertical_edges = ensure_multi_line_string(snap(grating3.difference(grating1), diagonal_edges, 0.005))
return endpoints, chain(diagonal_edges.geoms, vertical_edges.geoms)
@@ -518,8 +505,7 @@ def find_stitch_path(graph, travel_graph, starting_point=None, ending_point=None
last_vertex, last_key = current_vertex, current_key
vertex_stack.pop()
else:
- ignore, next_vertex, next_key = pick_edge(
- graph.edges(current_vertex, keys=True))
+ ignore, next_vertex, next_key = pick_edge(graph.edges(current_vertex, keys=True))
vertex_stack.append((next_vertex, next_key))
graph.remove_edge(current_vertex, next_vertex, next_key)
@@ -548,8 +534,7 @@ def find_stitch_path(graph, travel_graph, starting_point=None, ending_point=None
# relevant in the case that the user specifies an underlay with an inset
# value, because the starting point (and possibly ending point) can be
# inside the shape.
- outline_nodes = [node for node, outline in travel_graph.nodes(
- data="outline") if outline is not None]
+ outline_nodes = [node for node, outline in travel_graph.nodes(data="outline") if outline is not None]
real_end = nearest_node(outline_nodes, ending_point)
path.append(PathEdge((ending_node, real_end), key="outline"))
@@ -639,7 +624,6 @@ def path_to_stitches(path, travel_graph, fill_stitch_graph, angle, row_spacing,
stitch_row(stitches, edge[0], edge[1], angle, row_spacing, max_stitch_length, staggers, skip_last)
travel_graph.remove_edges_from(fill_stitch_graph[edge[0]][edge[1]]['segment'].get('underpath_edges', []))
else:
- stitches.extend(
- travel(travel_graph, edge[0], edge[1], running_stitch_length, skip_last))
+ stitches.extend(travel(travel_graph, edge[0], edge[1], running_stitch_length, skip_last))
return stitches