- 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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user