Replace point by its transformation with matrix-like m.
(self, m)
| 14287 | return (r.x0 - self.x) * f |
| 14288 | |
| 14289 | def transform(self, m): |
| 14290 | """Replace point by its transformation with matrix-like m.""" |
| 14291 | if len(m) != 6: |
| 14292 | raise ValueError("Matrix: bad seq len") |
| 14293 | self.x, self.y = util_transform_point(self, m) |
| 14294 | return self |
| 14295 | |
| 14296 | @property |
| 14297 | def unit(self): |
no test coverage detected