summaryrefslogtreecommitdiff
path: root/lib/elements/stroke.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2018-07-13 19:51:25 -0400
committerGitHub <noreply@github.com>2018-07-13 19:51:25 -0400
commitc6ebfea5425229f19e12d40391ff1d6253ea4c55 (patch)
tree58a53c0730c516b9ce53ec873fd23e9463cb631f /lib/elements/stroke.py
parent67342608b0d059bc3ec79001e62d0bc0cdb251d4 (diff)
parent6caba7b839e9f4e90ab9f3ff1110c8759e30337d (diff)
Merge pull request #224 from inkstitch/lexelby-trim-stop-commands
trim and stop commands
Diffstat (limited to 'lib/elements/stroke.py')
-rw-r--r--lib/elements/stroke.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py
index eca9e0ba..e8eb4783 100644
--- a/lib/elements/stroke.py
+++ b/lib/elements/stroke.py
@@ -1,4 +1,5 @@
import sys
+import shapely.geometry
from .element import param, EmbroideryElement, Patch
from ..i18n import _
@@ -51,6 +52,12 @@ class Stroke(EmbroideryElement):
return self.flatten(path)
@property
+ @cache
+ def shape(self):
+ line_strings = [shapely.geometry.LineString(path) for path in self.paths]
+ return shapely.geometry.MultiLineString(line_strings)
+
+ @property
@param('manual_stitch', _('Manual stitch placement'), tooltip=_("Stitch every node in the path. Stitch length and zig-zag spacing are ignored."), type='boolean', default=False)
def manual_stitch_mode(self):
return self.get_boolean_param('manual_stitch')