Add a rotation (in degrees) to this transform in place. Returns *self*, so this method can easily be chained with more calls to :meth:`rotate`, :meth:`rotate_deg`, :meth:`translate` and :meth:`scale`.
(self, degrees)
| 2053 | return self |
| 2054 | |
| 2055 | def rotate_deg(self, degrees): |
| 2056 | """ |
| 2057 | Add a rotation (in degrees) to this transform in place. |
| 2058 | |
| 2059 | Returns *self*, so this method can easily be chained with more |
| 2060 | calls to :meth:`rotate`, :meth:`rotate_deg`, :meth:`translate` |
| 2061 | and :meth:`scale`. |
| 2062 | """ |
| 2063 | return self.rotate(math.radians(degrees)) |
| 2064 | |
| 2065 | def rotate_around(self, x, y, theta): |
| 2066 | """ |