summaryrefslogtreecommitdiff
path: root/gerberex/excellon.py
diff options
context:
space:
mode:
authorHiroshi Murayama <opiopan@gmail.com>2019-09-30 18:52:17 +0900
committerHiroshi Murayama <opiopan@gmail.com>2019-09-30 18:52:17 +0900
commitd7a069324222bb8f69adc9b1c815fc9f3f6a29d6 (patch)
tree0b98a748d8d4e57b2b8ecf59a63963563e4949c8 /gerberex/excellon.py
parent242dc2ae173659a47c694c7423b62125aeb6c9a6 (diff)
downloadgerbonara-d7a069324222bb8f69adc9b1c815fc9f3f6a29d6.tar.gz
gerbonara-d7a069324222bb8f69adc9b1c815fc9f3f6a29d6.tar.bz2
gerbonara-d7a069324222bb8f69adc9b1c815fc9f3f6a29d6.zip
fix a issue that coordinate normalization for excellon is imperfect
Diffstat (limited to 'gerberex/excellon.py')
-rw-r--r--gerberex/excellon.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gerberex/excellon.py b/gerberex/excellon.py
index 4f867be..570f94e 100644
--- a/gerberex/excellon.py
+++ b/gerberex/excellon.py
@@ -200,6 +200,8 @@ class ExcellonFileEx(ExcellonFile):
self.units = 'metric'
def write(self, filename=None):
+ self.notation = 'absolute'
+ self.zeros = 'trailing'
filename = filename if filename is not None else self.filename
with open(filename, 'w') as f:
write_excellon_header(f, self.settings, [self.tools[t] for t in self.tools])