- fixed an error in Gerber Parser; the initial values for currnet_x, current_y were None but should have been 0.0

- limited the lower limit of angle of V-tip to a value of 1 because 0 makes no sense
This commit is contained in:
Marius Stanciu
2020-02-02 15:54:09 +02:00
committed by Marius
parent 1be1851ac7
commit c7074d71ba
4 changed files with 11 additions and 9 deletions

View File

@@ -394,10 +394,10 @@ class Gerber(Geometry):
current_operation_code = None
# Current coordinates
current_x = None
current_y = None
previous_x = None
previous_y = None
current_x = 0
current_y = 0
previous_x = 0
previous_y = 0
current_d = None