diff options
Diffstat (limited to 'gerbonara')
-rw-r--r-- | gerbonara/rs274x.py | 2 |
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 = [] |