fill: ensure polygon in pull comp adjusted shape (#3143)

capellan-clone-commands-fixes dev-build-capellan-clone-commands-fixes
Kaalleen 2024-08-18 20:05:37 +02:00 zatwierdzone przez GitHub
rodzic 8591f81ecb
commit 7cf952dce2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 15 dodań i 8 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ from ..svg import PIXELS_PER_MM
from ..utils import cache
from ..utils.clamp_path import clamp_path_to_polygon
from ..utils.geometry import Point as InkstitchPoint
from ..utils.geometry import (ensure_multi_line_string,
from ..utils.geometry import (ensure_multi_line_string, ensure_polygon,
line_string_to_point_list, offset_points)
from ..utils.list import is_all_zeroes
from ..utils.prng import join_args
@ -139,18 +139,13 @@ def adjust_shape_for_pull_compensation(shape, angle, row_spacing, pull_compensat
buffer_amount = row_spacing/2 + 0.01
buffered_lines = [line.buffer(buffer_amount) for line in lines]
polygon = unary_union(buffered_lines)
polygon = ensure_polygon(unary_union(buffered_lines))
exterior = smooth_path(polygon.exterior.coords, 0.2)
min_hole_area = row_spacing ** 2
interiors = [smooth_path(interior.coords) for interior in polygon.interiors if shgeo.Polygon(interior).area > min_hole_area]
shape = make_valid(shgeo.Polygon(exterior, interiors))
if shape.geom_type == 'MultiPolygon':
# the shape is somehow messed up
# rescue it by just using the first geometry
shape = list(shape.geoms)
shape.sort(key=lambda polygon: polygon.area, reverse=True)
shape = shape[0]
shape = ensure_polygon(shape)
return shape

Wyświetl plik

@ -179,6 +179,18 @@ def ensure_multi_point(thing):
return multi_point
def ensure_polygon(thing):
"""Given a Polygon or a MultiPolygon
Returns the Polygon or the biggest Polygon of the MultiPolygon"""
if thing.geom_type == "MultiPolygon":
thing = list(thing.geoms)
thing.sort(key=lambda thing: thing.area, reverse=True)
return thing[0]
return thing
def cut_path(points, length):
"""Return a subsection of at the start of the path that is length units long.