Merge pull request #1874 from inkstitch/george-steel/fractional-stagger

Add support for fractional-length stagger cycles in fills
pull/1890/head
George Steel 2022-10-27 23:01:05 -04:00 zatwierdzone przez GitHub
commit 0032e5cdd0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 9 dodań i 5 usunięć

Wyświetl plik

@ -216,13 +216,13 @@ class FillStitch(EmbroideryElement):
@property
@param('staggers',
_('Stagger rows this many times before repeating'),
tooltip=_('Setting this dictates how many rows apart the stitches will be before they fall in the same column position.'),
tooltip=_('Length of the cycle by which successive stitch rows are staggered. Fractional values are allowed and can have less visible diagonals than integer values.'),
type='int',
sort_index=6,
select_items=[('fill_method', 0), ('fill_method', 2), ('fill_method', 3)],
default=4)
def staggers(self):
return max(self.get_int_param("staggers", 4), 1)
return self.get_float_param("staggers", 4)
@property
@cache

Wyświetl plik

@ -37,9 +37,11 @@ def row_num(point, angle, row_spacing):
def adjust_stagger(stitch, angle, row_spacing, max_stitch_length, staggers):
if staggers == 0:
staggers = 1 # sanity check to avoid division by zero.
this_row_num = row_num(stitch, angle, row_spacing)
row_stagger = this_row_num % staggers
stagger_offset = (float(row_stagger) / staggers) * max_stitch_length
stagger_phase = (this_row_num / staggers) % 1
stagger_offset = stagger_phase * max_stitch_length
offset = ((stitch * east(angle)) - stagger_offset) % max_stitch_length
return stitch - offset * east(angle)

Wyświetl plik

@ -148,7 +148,9 @@ def take_only_line_strings(thing):
def apply_stitches(line, max_stitch_length, num_staggers, row_spacing, row_num):
start = (float(row_num % num_staggers) / num_staggers) * max_stitch_length
if num_staggers == 0:
num_staggers = 1 # sanity check to avoid division by zero.
start = ((row_num / num_staggers) % 1) * max_stitch_length
projections = np.arange(start, line.length, max_stitch_length)
points = np.array([line.interpolate(projection).coords[0] for projection in projections])
stitched_line = shgeo.LineString(points)