summaryrefslogtreecommitdiff
path: root/gerbonara/gerber/graphic_objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gerbonara/gerber/graphic_objects.py')
-rw-r--r--gerbonara/gerber/graphic_objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/gerber/graphic_objects.py b/gerbonara/gerber/graphic_objects.py
index d9736cf..81d68f3 100644
--- a/gerbonara/gerber/graphic_objects.py
+++ b/gerbonara/gerber/graphic_objects.py
@@ -40,7 +40,7 @@ class GerberObject:
def rotate(self, rotation, cx=0, cy=0, unit='mm'):
cx, cy = self._conv(cx, unit), self._conv(cy, unit)
- return self._rotate(cx, cy)
+ self._rotate(rotation, cx, cy)
def bounding_box(self, unit=None):
bboxes = [ p.bounding_box for p in self.to_primitives(unit) ]