- fixed typo in Gerber parser

This commit is contained in:
Marius Stanciu
2021-06-21 23:58:23 +03:00
committed by Marius
parent 277d5e4440
commit 71206b52f3
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ CHANGELOG for FlatCAM beta
- optimized the data storage in the on_about() method - optimized the data storage in the on_about() method
- randomized the order in the programmers list at each launch of the on_about() method - randomized the order in the programmers list at each launch of the on_about() method
- fixed typo in Gerber parser
19.06.2021 19.06.2021

View File

@@ -1529,7 +1529,7 @@ class Gerber(Geometry):
] ]
valid = False valid = False
self.app.self.app.log.debug("I: %f J: %f" % (i, j)) self.app.log.debug("I: %f J: %f" % (i, j))
for center in center_candidates: for center in center_candidates:
radius = np.sqrt(i ** 2 + j ** 2) radius = np.sqrt(i ** 2 + j ** 2)