From 748ab7ccf205e99c2997db241cb5b7623a9631b2 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 18 Jun 2022 23:52:47 +0200 Subject: Fix rs274x to excellon conversion --- gerbonara/rs274x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gerbonara/rs274x.py') 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 = [] -- cgit