- solved the issue in Silkscreen Tool with losing some fragments of wires from silkscreen

This commit is contained in:
Marius Stanciu
2019-04-30 03:54:29 +03:00
parent 0e94a2bd11
commit b8495f06ca
2 changed files with 2 additions and 1 deletions

View File

@@ -287,7 +287,7 @@ class ToolSilk(FlatCAMTool):
for poly in self.new_apertures[ap]['solid_geometry']:
poly_buff.append(poly)
work_poly_buff = MultiPolygon(poly_buff)
work_poly_buff = cascaded_union(poly_buff)
try:
poly_buff = work_poly_buff.buffer(0.0000001)
except ValueError: