- fixed mouse bytes generation if Cutout Plugin to add an extra drill hole at the end

- fixed an issue in Film Plugin made by copy/paste done recently to make sure that objects selected in Project Menu are populated in the Plugin UI on Film Plugin launch
- removed a parameter in the serialized parameters for CNCJob object (no longer used)
This commit is contained in:
Marius Stanciu
2021-03-19 14:07:36 +02:00
committed by Marius
parent 0177a64fe4
commit 3011f159bc
4 changed files with 17 additions and 14 deletions

View File

@@ -1038,7 +1038,7 @@ class CutOut(AppTool):
holes = []
for line in mouse_bites_geo:
calc_len = 0
while calc_len < line.length:
while calc_len <= line.length:
holes.append(line.interpolate(calc_len))
calc_len += mb_dia + mb_spacing
@@ -1419,7 +1419,7 @@ class CutOut(AppTool):
holes = []
for line in mouse_bites_geo:
calc_len = 0
while calc_len < line.length:
while calc_len <= line.length:
holes.append(line.interpolate(calc_len))
calc_len += mb_dia + mb_spacing
@@ -1915,7 +1915,7 @@ class CutOut(AppTool):
mb_spacing = self.ui.mb_spacing_entry.get_value()
for line in self.mb_manual_cuts:
calc_len = 0
while calc_len < line.length:
while calc_len <= line.length:
holes.append(line.interpolate(calc_len))
calc_len += mb_dia + mb_spacing
self.mb_manual_cuts[:] = []