- replaced setFixedWidth calls with setMinimumWidth

- recoded the camlib.Geometry.isolation_geometry() function
This commit is contained in:
Marius Stanciu 2019-08-07 15:05:33 +03:00 committed by Marius
parent 258d3463e7
commit fd948cc2c8
2 changed files with 14 additions and 8 deletions

View File

@ -9,6 +9,11 @@ CAD program, and create G-Code for Isolation routing.
=================================================
7.09.2019
- replaced setFixedWidth calls with setMinimumWidth
- recoded the camlib.Geometry.isolation_geometry() function
6.08.2019
- fixed bug that crashed the app after creating a new geometry, if a new object is loaded and the new geometry is deleted and then trying to select the just loaded new object
@ -16,7 +21,6 @@ CAD program, and create G-Code for Isolation routing.
- fixed issue in the isolation function, if the isolation can't be done there will be generated no Geometry object
- some minor UI changes
- strings added and translations updated
- replaced setFixedWidth calls with setMinimumWidth
5.08.2019

View File

@ -555,19 +555,21 @@ class Geometry(object):
geo_iso = self.follow_geometry
else:
if corner is None:
if type(self.solid_geometry) is list and len(self.solid_geometry) == 1:
geo_iso = self.solid_geometry[0].buffer(offset, int(int(self.geo_steps_per_circle) / 4))
else:
try:
__ = iter(self.solid_geometry)
for el in self.solid_geometry:
geo_iso.append(el.buffer(offset, int(int(self.geo_steps_per_circle) / 4)))
except TypeError:
geo_iso = self.solid_geometry.buffer(offset, int(int(self.geo_steps_per_circle) / 4))
else:
if type(self.solid_geometry) is list and len(self.solid_geometry) == 1:
geo_iso = self.solid_geometry.buffer[0](offset, int(int(self.geo_steps_per_circle) / 4),
join_style=corner)
else:
try:
__ = iter(self.solid_geometry)
for el in self.solid_geometry:
geo_iso.append(el.buffer(offset, int(int(self.geo_steps_per_circle) / 4),
join_style=corner))
except TypeError:
geo_iso = self.solid_geometry.buffer(offset, int(int(self.geo_steps_per_circle) / 4),
join_style=corner)
# end of replaced block
if follow: