cjlano / svg

A Python SVG parser and drawing module
GNU General Public License v2.0
85 stars 33 forks source link

`scale` is not propagated to all `Transformable`s #6

Open dov opened 9 years ago

dov commented 9 years ago

E.g. class Rect() is missing:

 def scale(self,scale):
     self.P1 = scale * self.P1
     self.P2 = scale * self.P2

But other Transsformables have similar omissions.