row spacing for circular fill (#2099)

pull/2110/head
Kaalleen 2023-02-27 19:36:39 +01:00 zatwierdzone przez GitHub
rodzic ec076315bb
commit a90a4e9897
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -256,6 +256,7 @@ class FillStitch(EmbroideryElement):
select_items=[('fill_method', 'auto_fill'),
('fill_method', 'contour_fill'),
('fill_method', 'guided_fill'),
('fill_method', 'circular_fill'),
('fill_method', 'legacy_fill')],
default=0.25)
def row_spacing(self):

Wyświetl plik

@ -1,10 +1,8 @@
import re
from copy import copy
from math import degrees
from inkex import DirectedLineSegment, Path
from shapely.geometry import LineString
from shapely.ops import substring
from ..i18n import _
from ..svg import PIXELS_PER_MM

Wyświetl plik

@ -44,7 +44,7 @@ class StitchGroup:
# instance.foo = None
instance.lock_stitches = None
return instance
def __add__(self, other):