diff options
author | jaseg <git@jaseg.de> | 2022-02-03 01:02:45 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-02-03 01:02:45 +0100 |
commit | ac66fd9d6b3561c1a0fb52ac2e196157bcf5f4fd (patch) | |
tree | 35af3d6f1c0e1519ccfe40363a022a6b8d1ab494 /gerbonara/aperture_macros | |
parent | 18b9da86601ad95aaf7f0d3e02617a1970aaf574 (diff) | |
download | gerbonara-ac66fd9d6b3561c1a0fb52ac2e196157bcf5f4fd.tar.gz gerbonara-ac66fd9d6b3561c1a0fb52ac2e196157bcf5f4fd.tar.bz2 gerbonara-ac66fd9d6b3561c1a0fb52ac2e196157bcf5f4fd.zip |
More doc!
Diffstat (limited to 'gerbonara/aperture_macros')
-rw-r--r-- | gerbonara/aperture_macros/primitive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/aperture_macros/primitive.py b/gerbonara/aperture_macros/primitive.py index 8732520..47ae87b 100644 --- a/gerbonara/aperture_macros/primitive.py +++ b/gerbonara/aperture_macros/primitive.py @@ -159,7 +159,7 @@ class Polygon(Primitive): rotation += deg_to_rad(calc.rotation) x, y = gp.rotate_point(calc.x, calc.y, rotation, 0, 0) x, y = x+offset[0], y+offset[1] - return [ gp.RegularPolygon(calc.x, calc.y, calc.diameter/2, calc.n_vertices, rotation, + return [ gp.ArcPoly.from_regular_polygon(calc.x, calc.y, calc.diameter/2, calc.n_vertices, rotation, polarity_dark=(bool(calc.exposure) == polarity_dark)) ] def dilate(self, offset, unit): |