diff options
author | jaseg <git@jaseg.de> | 2023-04-06 16:41:10 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-04-06 16:41:10 +0200 |
commit | 48d4aeee947a913bf949ab60f09754089129835f (patch) | |
tree | 320b0cb9d49727fe8569a06d374374ad6905e64e /gerbonara/cad | |
parent | 6378a91f3614c5258c0037eb4eb1f28d160ed346 (diff) | |
download | gerbonara-48d4aeee947a913bf949ab60f09754089129835f.tar.gz gerbonara-48d4aeee947a913bf949ab60f09754089129835f.tar.bz2 gerbonara-48d4aeee947a913bf949ab60f09754089129835f.zip |
Make SVG export even smaller
Diffstat (limited to 'gerbonara/cad')
-rw-r--r-- | gerbonara/cad/protoboard.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gerbonara/cad/protoboard.py b/gerbonara/cad/protoboard.py index c9547aa..41276e2 100644 --- a/gerbonara/cad/protoboard.py +++ b/gerbonara/cad/protoboard.py @@ -287,7 +287,6 @@ class EmptyProtoArea: group = ObjectGroup(0, 0, top_copper=[Region([(min_x, min_y), (max_x, min_y), (max_x, max_y), (min_x, max_y)], unit=unit, polarity_dark=True)]) group.bounding_box = lambda *args, **kwargs: None - print('adding', self, bbox, group.bounding_box(), file=sys.stderr) yield group @property |