- fix an older issue that made that only the Custom choice created an effect when changing the Offset in the Geometry Object Tool Table
This commit is contained in:
15
camlib.py
15
camlib.py
@@ -3517,15 +3517,22 @@ class CNCjob(Geometry):
|
||||
p = self.pp_geometry
|
||||
|
||||
# Offset the Geometry if it is the case
|
||||
# FIXME need to test if in ["Path", "In", "Out", "Custom"]. For now only 'Custom' is somehow done
|
||||
offset = tools[tool]['offset_value']
|
||||
if offset != 0.0:
|
||||
if tools[tool]['offset'].lower() == 'in':
|
||||
tool_offset = -float(tools[tool]['tooldia']) / 2.0
|
||||
elif tools[tool]['offset'].lower() == 'out':
|
||||
tool_offset = float(tools[tool]['tooldia']) / 2.0
|
||||
elif tools[tool]['offset'].lower() == 'custom':
|
||||
tool_offset = tools[tool]['offset_value']
|
||||
else:
|
||||
tool_offset = 0.0
|
||||
|
||||
if tool_offset != 0.0:
|
||||
for it in flat_geometry:
|
||||
# if the geometry is a closed shape then create a Polygon out of it
|
||||
if isinstance(it, LineString):
|
||||
if it.is_ring:
|
||||
it = Polygon(it)
|
||||
temp_solid_geometry.append(it.buffer(offset, join_style=2))
|
||||
temp_solid_geometry.append(it.buffer(tool_offset, join_style=2))
|
||||
temp_solid_geometry = self.flatten(temp_solid_geometry, reset=True, pathonly=True)
|
||||
else:
|
||||
temp_solid_geometry = flat_geometry
|
||||
|
||||
Reference in New Issue
Block a user