- solved the issue in Silkscreen Tool with losing some fragments of wires from silkscreen
This commit is contained in:
@@ -15,6 +15,7 @@ CAD program, and create G-Code for Isolation routing.
|
|||||||
- solved bug in editors: the canvas selection shape was not deleted on mouse release if the grid snap was OFF
|
- solved bug in editors: the canvas selection shape was not deleted on mouse release if the grid snap was OFF
|
||||||
- solved bug in Excellon Editor: when selecting a drill hole on canvas the selected row in the Tools Table was not the correct onw but the next highest row
|
- solved bug in Excellon Editor: when selecting a drill hole on canvas the selected row in the Tools Table was not the correct onw but the next highest row
|
||||||
- finished the Silkscreen Tool but there are some limitations (some wires fragments from silkscreen are lost)
|
- finished the Silkscreen Tool but there are some limitations (some wires fragments from silkscreen are lost)
|
||||||
|
- solved the issue in Silkscreen Tool with losing some fragments of wires from silkscreen
|
||||||
|
|
||||||
26.04.2019
|
26.04.2019
|
||||||
|
|
||||||
|
|||||||
@@ -287,7 +287,7 @@ class ToolSilk(FlatCAMTool):
|
|||||||
for poly in self.new_apertures[ap]['solid_geometry']:
|
for poly in self.new_apertures[ap]['solid_geometry']:
|
||||||
poly_buff.append(poly)
|
poly_buff.append(poly)
|
||||||
|
|
||||||
work_poly_buff = MultiPolygon(poly_buff)
|
work_poly_buff = cascaded_union(poly_buff)
|
||||||
try:
|
try:
|
||||||
poly_buff = work_poly_buff.buffer(0.0000001)
|
poly_buff = work_poly_buff.buffer(0.0000001)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
|||||||
Reference in New Issue
Block a user