diff --git a/masque/shapes/path.py b/masque/shapes/path.py index 543b77a..15b1ead 100644 --- a/masque/shapes/path.py +++ b/masque/shapes/path.py @@ -317,7 +317,8 @@ class Path(Shape, metaclass=AutoSlots): return bounds def rotate(self, theta: float) -> 'Path': - self.vertices = numpy.dot(rotation_matrix_2d(theta), self.vertices.T).T + if theta != 0: + self.vertices = numpy.dot(rotation_matrix_2d(theta), self.vertices.T).T return self def mirror(self, axis: int) -> 'Path': diff --git a/masque/shapes/polygon.py b/masque/shapes/polygon.py index 41ca642..cee5780 100644 --- a/masque/shapes/polygon.py +++ b/masque/shapes/polygon.py @@ -266,7 +266,8 @@ class Polygon(Shape, metaclass=AutoSlots): self.offset + numpy.max(self.vertices, axis=0))) def rotate(self, theta: float) -> 'Polygon': - self.vertices = numpy.dot(rotation_matrix_2d(theta), self.vertices.T).T + if theta != 0: + self.vertices = numpy.dot(rotation_matrix_2d(theta), self.vertices.T).T return self def mirror(self, axis: int) -> 'Polygon':