diff options
author | jaseg <git@jaseg.de> | 2024-11-06 14:49:50 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2024-11-06 14:49:50 +0100 |
commit | be8371c7bc21abe12db49f9dd38dac4513a64886 (patch) | |
tree | 2cf9d84d17f60666b2466b162c632ea1e325b25f /gerbonara/cam.py | |
parent | 1a854b1812400867117584f6bbde7bd1c75bb118 (diff) | |
download | gerbonara-be8371c7bc21abe12db49f9dd38dac4513a64886.tar.gz gerbonara-be8371c7bc21abe12db49f9dd38dac4513a64886.tar.bz2 gerbonara-be8371c7bc21abe12db49f9dd38dac4513a64886.zip |
Improve allegro/orcad import
Diffstat (limited to 'gerbonara/cam.py')
-rw-r--r-- | gerbonara/cam.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gerbonara/cam.py b/gerbonara/cam.py index e6bb651..14c1e8b 100644 --- a/gerbonara/cam.py +++ b/gerbonara/cam.py @@ -60,6 +60,9 @@ class FileSettings: #: If you want to export the macros with their original formulaic expressions (which is completely fine by the #: Gerber standard, btw), set this parameter to ``False`` before exporting. calculate_out_all_aperture_macros: bool = True + #: Internal field used to communicate if only decimal coordinates were found inside an Excellon file, or if it + #: contained at least some coordinates in fixed-width notation. + _file_has_fixed_width_coordinates: bool = False # input validation def __setattr__(self, name, value): |