stroke to satin: avoid topology error

pull/2284/head
Kaalleen 2023-05-10 09:25:44 +02:00
rodzic c799b798bc
commit 65272ec7ca
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -99,6 +99,7 @@ class ConvertToSatin(InkstitchExtension):
path[0] = start.as_tuple()
def remove_duplicate_points(self, path):
path = [[round(coord, 4) for coord in point] for point in path]
return [point for point, repeats in groupby(path)]
def join_style_args(self, element):