diff options
author | jaseg <git@jaseg.de> | 2023-04-23 23:33:00 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-04-23 23:33:00 +0200 |
commit | bda404c18be7e6c8a82c2a4022bcde1215679b9e (patch) | |
tree | 87d71d788b27e8d6df07db2580a5fd46c67409f8 /gerbonara/graphic_objects.py | |
parent | aaaf96e8d91b38ca8bd2ca488e4ded729417f8e3 (diff) | |
download | gerbonara-bda404c18be7e6c8a82c2a4022bcde1215679b9e.tar.gz gerbonara-bda404c18be7e6c8a82c2a4022bcde1215679b9e.tar.bz2 gerbonara-bda404c18be7e6c8a82c2a4022bcde1215679b9e.zip |
Fix a bunch of failing tests
Diffstat (limited to 'gerbonara/graphic_objects.py')
-rw-r--r-- | gerbonara/graphic_objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/graphic_objects.py b/gerbonara/graphic_objects.py index bcf94ce..b9217bb 100644 --- a/gerbonara/graphic_objects.py +++ b/gerbonara/graphic_objects.py @@ -716,7 +716,7 @@ class Arc(GraphicObject): def as_primitive(self, unit=None): conv = self.converted(unit) - w = self.aperture.equivalent_width(unit) if self.aperture else 0.1 # for debugging + w = self.aperture.equivalent_width(unit) if self.aperture else 0 return gp.Arc(x1=conv.x1, y1=conv.y1, x2=conv.x2, y2=conv.y2, cx=conv.cx, cy=conv.cy, |