From be8371c7bc21abe12db49f9dd38dac4513a64886 Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 6 Nov 2024 14:49:50 +0100 Subject: Improve allegro/orcad import --- gerbonara/cam.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gerbonara/cam.py') 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): -- cgit