diff options
author | jaseg <git@jaseg.de> | 2023-04-06 16:41:10 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-04-10 23:57:15 +0200 |
commit | 6fe3def9d6ebe73f5ad4c5ed4d22ff13ce321528 (patch) | |
tree | 0d947678392da9e55a11069dd865dd66f0c3af71 /gerbonara/cad | |
parent | 0dcd2814061e8ee93bfef9484a3b3de56d156ff9 (diff) | |
download | gerbonara-6fe3def9d6ebe73f5ad4c5ed4d22ff13ce321528.tar.gz gerbonara-6fe3def9d6ebe73f5ad4c5ed4d22ff13ce321528.tar.bz2 gerbonara-6fe3def9d6ebe73f5ad4c5ed4d22ff13ce321528.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 |