diff options
| author | Lex Neva <github.com@lexneva.name> | 2022-05-03 14:34:21 -0400 |
|---|---|---|
| committer | Kaalleen <reni@allenka.de> | 2022-05-04 19:18:33 +0200 |
| commit | 5a69fa3e9c582a3bc21660342cea35837ae1eb9a (patch) | |
| tree | d2ce77282fdb4aa5376d490e420d7c18b5389462 /lib/stitches/tangential_fill_stitch_line_creator.py | |
| parent | 68ee0eea8733d613543a28627bd21a4481da8b46 (diff) | |
add double (fermat) spiral
Diffstat (limited to 'lib/stitches/tangential_fill_stitch_line_creator.py')
| -rw-r--r-- | lib/stitches/tangential_fill_stitch_line_creator.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/stitches/tangential_fill_stitch_line_creator.py b/lib/stitches/tangential_fill_stitch_line_creator.py index 78213384..69bb13f2 100644 --- a/lib/stitches/tangential_fill_stitch_line_creator.py +++ b/lib/stitches/tangential_fill_stitch_line_creator.py @@ -84,7 +84,8 @@ def make_tree_uniform(tree, clockwise=True): # Used to define which stitching strategy shall be used class StitchingStrategy(IntEnum): INNER_TO_OUTER = 0 - SPIRAL = 1 + SINGLE_SPIRAL = 1 + DOUBLE_SPIRAL = 2 def check_and_prepare_tree_for_valid_spiral(tree): @@ -158,7 +159,7 @@ def offset_poly(poly, offset, join_style, stitch_distance, min_stitch_distance, at this position """ - if strategy == StitchingStrategy.SPIRAL and len(poly.interiors) > 1: + if strategy in (StitchingStrategy.SINGLE_SPIRAL, StitchingStrategy.DOUBLE_SPIRAL) and len(poly.interiors) > 1: raise ValueError( "Single spiral geometry must not have more than one hole!") @@ -293,10 +294,15 @@ def offset_poly(poly, offset, join_style, stitch_distance, min_stitch_distance, tree, 'root', abs(offset), stitch_distance, min_stitch_distance, starting_point, offset_by_half, avoid_self_crossing) path = [Stitch(*point) for point in connected_line.coords] return running_stitch(path, stitch_distance), "whatever" - elif strategy == StitchingStrategy.SPIRAL: + elif strategy == StitchingStrategy.SINGLE_SPIRAL: if not check_and_prepare_tree_for_valid_spiral(tree): raise ValueError("Geometry cannot be filled with one spiral!") - (connected_line, connected_line_origin) = tangential_fill_stitch_pattern_creator.connect_raster_tree_spiral( + (connected_line, connected_line_origin) = tangential_fill_stitch_pattern_creator.connect_raster_tree_single_spiral( + tree, offset, stitch_distance, min_stitch_distance, starting_point, offset_by_half) + elif strategy == StitchingStrategy.DOUBLE_SPIRAL: + if not check_and_prepare_tree_for_valid_spiral(tree): + raise ValueError("Geometry cannot be filled with a double spiral!") + (connected_line, connected_line_origin) = tangential_fill_stitch_pattern_creator.connect_raster_tree_double_spiral( tree, offset, stitch_distance, min_stitch_distance, starting_point, offset_by_half) else: raise ValueError("Invalid stitching stratety!") |
