From 1cab33314ff71ff84e2c98548f19a46db07c4be2 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sat, 23 Feb 2019 21:32:13 +0200 Subject: [PATCH] - reverted a change in GCode that might affect Gerber polarity change in Gerber parser --- README.md | 1 + camlib.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aac1a60..11e66f11 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ CAD program, and create G-Code for Isolation routing. - added the ability to open FlatConfig configuration files in COde Editor, Modify them and then save them. - added ability to double click the FlatConfig files and open them in the FlatCAM Code Editor (to be verified) - when saving a file from Code Editor and there is no object active then the OpenFileDialog filters are reset to FlatConfig files. +- reverted a change in GCode that might affect Gerber polarity change in Gerber parser 23.02.2019 diff --git a/camlib.py b/camlib.py index 06655b23..bceceb55 100644 --- a/camlib.py +++ b/camlib.py @@ -2246,7 +2246,7 @@ class Gerber (Geometry): else: self.follow_geometry = self.solid_geometry.difference(cascaded_union(follow_buffer)) - self.solid_geometry = self.solid_geometry.union(cascaded_union(poly_buffer)) + self.solid_geometry = self.solid_geometry.difference(cascaded_union(poly_buffer)) follow_buffer = [] poly_buffer = []