summaryrefslogtreecommitdiff
path: root/gerbonara/rs274x.py
diff options
context:
space:
mode:
authorjaseg <git-bigdata-wsl-arch@jaseg.de>2022-06-18 23:52:47 +0200
committerjaseg <git-bigdata-wsl-arch@jaseg.de>2022-06-18 23:52:47 +0200
commit748ab7ccf205e99c2997db241cb5b7623a9631b2 (patch)
treea8dc200d9adac323a83f702d8176021979a162dd /gerbonara/rs274x.py
parent45d41af3aab595caf8c9016f7e7f32e437f892e5 (diff)
downloadgerbonara-748ab7ccf205e99c2997db241cb5b7623a9631b2.tar.gz
gerbonara-748ab7ccf205e99c2997db241cb5b7623a9631b2.tar.bz2
gerbonara-748ab7ccf205e99c2997db241cb5b7623a9631b2.zip
Fix rs274x to excellon conversion
Diffstat (limited to 'gerbonara/rs274x.py')
-rw-r--r--gerbonara/rs274x.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/rs274x.py b/gerbonara/rs274x.py
index 7be55cc..b0f7e7c 100644
--- a/gerbonara/rs274x.py
+++ b/gerbonara/rs274x.py
@@ -133,7 +133,7 @@ class GerberFile(CamFile):
# TODO add tests for this
self.apertures = [ aperture.dilated(offset, unit) for aperture in self.apertures ]
- offset_circle = CircleAperture(offset, unit=unit)
+ offset_circle = apertures.CircleAperture(offset, unit=unit)
self.apertures.append(offset_circle)
new_primitives = []