Scales width and height according to previously set scale.
(self, w, h)
| 704 | # Scale. |
| 705 | |
| 706 | def getScaledWH(self, w, h): |
| 707 | """Scales width and height according to previously set scale.""" |
| 708 | return w * self._sx, h * self._sy |
| 709 | |
| 710 | # Transformations. |
| 711 |