disambiguate some variable names

This commit is contained in:
Jan Petykiewicz 2020-05-11 19:01:02 -07:00
commit d33afc2bfd
2 changed files with 8 additions and 8 deletions

View file

@ -566,8 +566,8 @@ class Pattern:
for entry in self.shapes + self.subpatterns:
entry.offset *= c
entry.scale_by(c)
for entry in self.labels:
entry.offset *= c
for label in self.labels:
label.offset *= c
return self
def rotate_around(self, pivot: vector2, rotation: float) -> 'Pattern':