diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-03-15 08:51:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-15 08:51:40 +0100 |
| commit | 89b472d319d7247fb2ff19eb8d264a80baff8df7 (patch) | |
| tree | 76d3e974dfe6d434040c6061872610fd36c52010 /lib/extensions/element_info.py | |
| parent | 732de4fecb952dad58fabe51c7e7dc382a04383b (diff) | |
Element info: take pattern into account (#3581)
* element info: take pattern into account
* ensure multi-polygon for fill nonzero shapes
Diffstat (limited to 'lib/extensions/element_info.py')
| -rw-r--r-- | lib/extensions/element_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/element_info.py b/lib/extensions/element_info.py index 06acbb16..ed879f43 100644 --- a/lib/extensions/element_info.py +++ b/lib/extensions/element_info.py @@ -40,7 +40,7 @@ class ElementInfo(InkstitchExtension): app.MainLoop() def _element_info(self, element, previous_stitch_group, next_element): - stitch_groups = element.to_stitch_groups(previous_stitch_group) + stitch_groups = element.embroider(previous_stitch_group, next_element) stitch_plan = stitch_groups_to_stitch_plan( stitch_groups, collapse_len=self.metadata['collapse_len_mm'], |
