diff options
author | jaseg <git@jaseg.de> | 2021-07-04 20:56:09 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-07-04 20:56:09 +0200 |
commit | dd8944709c5a48ccb52ba41a2310218770eb1669 (patch) | |
tree | 6a98a25f223cd1297462e0bc3a4f6f64c12fc3e5 /gerbonara/gerber/render | |
parent | e38a983c398d5577008926f2cc9c0803b99e8fa9 (diff) | |
download | gerbonara-dd8944709c5a48ccb52ba41a2310218770eb1669.tar.gz gerbonara-dd8944709c5a48ccb52ba41a2310218770eb1669.tar.bz2 gerbonara-dd8944709c5a48ccb52ba41a2310218770eb1669.zip |
Refactor panelize/rx274x, refactor bounding_box return value
Diffstat (limited to 'gerbonara/gerber/render')
-rw-r--r-- | gerbonara/gerber/render/cairo_backend.py | 4 | ||||
-rw-r--r-- | gerbonara/gerber/render/rs274x_backend.py | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/gerbonara/gerber/render/cairo_backend.py b/gerbonara/gerber/render/cairo_backend.py index a7baf84..431ab94 100644 --- a/gerbonara/gerber/render/cairo_backend.py +++ b/gerbonara/gerber/render/cairo_backend.py @@ -608,9 +608,7 @@ class GerberCairoContext(GerberContext): """ class Clip: def __init__(clp, primitive): - x_range, y_range = primitive.bounding_box - xmin, xmax = x_range - ymin, ymax = y_range + (xmin, ymin), (xmax, ymax) = primitive.bounding_box # Round bounds to the nearest pixel outside of the primitive clp.xmin = math.floor(self.scale[0] * xmin) diff --git a/gerbonara/gerber/render/rs274x_backend.py b/gerbonara/gerber/render/rs274x_backend.py index c7af2ea..bf9f164 100644 --- a/gerbonara/gerber/render/rs274x_backend.py +++ b/gerbonara/gerber/render/rs274x_backend.py @@ -408,8 +408,8 @@ class Rs274xContext(GerberContext): hash += primitive.__class__.__name__[0] bbox = primitive.bounding_box - hash += str((bbox[0][1] - bbox[0][0]) * 100000)[0:2] - hash += str((bbox[1][1] - bbox[1][0]) * 100000)[0:2] + hash += str((bbox[1][0] - bbox[0][0]) * 100000)[0:2] + hash += str((bbox[1][1] - bbox[0][1]) * 100000)[0:2] if hasattr(primitive, 'primitives'): hash += str(len(primitive.primitives)) |