diff options
author | jaseg <git@jaseg.de> | 2022-01-22 19:26:48 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-01-22 19:26:48 +0100 |
commit | 242f4033c661d70c0d2722050370307f4d9b678a (patch) | |
tree | 9076a1d0f45a76c49a465f74903071671006b6de /gerbonara/gerber/aperture_macros/primitive.py | |
parent | 7cf41c6a72e52a63b4f4d4497732a72d6623eec8 (diff) | |
download | gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.tar.gz gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.tar.bz2 gerbonara-242f4033c661d70c0d2722050370307f4d9b678a.zip |
Make excellon tests pass
Diffstat (limited to 'gerbonara/gerber/aperture_macros/primitive.py')
-rw-r--r-- | gerbonara/gerber/aperture_macros/primitive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gerbonara/gerber/aperture_macros/primitive.py b/gerbonara/gerber/aperture_macros/primitive.py index 4de19c4..76268d2 100644 --- a/gerbonara/gerber/aperture_macros/primitive.py +++ b/gerbonara/gerber/aperture_macros/primitive.py @@ -232,9 +232,9 @@ class Outline(Primitive): bound_radii = [None] * len(bound_coords) rotation += deg_to_rad(calc.rotation) - bound_coords = [ rotate_point(*p, rotation, 0, 0) for p in bound_coords ] + bound_coords = [ gp.rotate_point(*p, rotation, 0, 0) for p in bound_coords ] - return gp.ArcPoly(bound_coords, bound_radii, polarity_dark=calc.exposure) + return [gp.ArcPoly(bound_coords, bound_radii, polarity_dark=calc.exposure)] def dilate(self, offset, unit): # we would need a whole polygon offset/clipping library here |