From 3565a39918b61f62872a3c9a0f327019ce35e7a4 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sat, 11 May 2019 19:31:23 +0300 Subject: [PATCH] - restored some changes in camlib.Gerber (the last_path_aperture value changed in G02/G03 parsing) --- camlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/camlib.py b/camlib.py index 9afa6f3f..7c8fcb72 100644 --- a/camlib.py +++ b/camlib.py @@ -2932,7 +2932,7 @@ class Gerber (Geometry): # Append path += this_arc - # last_path_aperture = current_aperture + last_path_aperture = current_aperture continue @@ -2982,7 +2982,7 @@ class Gerber (Geometry): current_x, current_y = circular_x, circular_y path += this_arc - # last_path_aperture = current_aperture + last_path_aperture = current_aperture valid = True break