diff options
Diffstat (limited to 'lib/extensions/density_map.py')
| -rw-r--r-- | lib/extensions/density_map.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/density_map.py b/lib/extensions/density_map.py index 854a4ebe..e4963bf9 100644 --- a/lib/extensions/density_map.py +++ b/lib/extensions/density_map.py @@ -39,8 +39,8 @@ class DensityMap(InkstitchExtension): self.metadata = self.get_inkstitch_metadata() collapse_len = self.metadata['collapse_len_mm'] min_stitch_len = self.metadata['min_stitch_len_mm'] - patches = self.elements_to_stitch_groups(self.elements) - stitch_plan = stitch_groups_to_stitch_plan(patches, collapse_len=collapse_len, min_stitch_len=min_stitch_len) + stitch_groups = self.elements_to_stitch_groups(self.elements) + stitch_plan = stitch_groups_to_stitch_plan(stitch_groups, collapse_len=collapse_len, min_stitch_len=min_stitch_len) layer = svg.find(".//*[@id='__inkstitch_density_plan__']") color_groups = create_color_groups(layer) |
