stroke: as_multi_line_string ignore single point paths (#3491)

pull/3498/head dev-build-claudine-fix_mimosa_wheelchair
Kaalleen 2025-02-09 16:02:49 +01:00 zatwierdzone przez GitHub
rodzic c74240fefa
commit 24775f33bf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -508,7 +508,7 @@ class Stroke(EmbroideryElement):
@cache
def as_multi_line_string(self):
line_strings = [shgeo.LineString(path) for path in self.paths]
line_strings = [shgeo.LineString(path) for path in self.paths if len(path) > 1]
return shgeo.MultiLineString(line_strings)
@property