From c0f0b2190a3eb19a1354ef230aa2d10801b4db72 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 11 Aug 2020 01:17:23 -0700 Subject: [PATCH] add fast-path for 0-degree rotations --- masque/shapes/path.py | 3 ++- masque/shapes/polygon.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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':