(self)
| 2423 | is_separable = property(_get_is_separable) |
| 2424 | |
| 2425 | def __str__(self): |
| 2426 | return ("{}(\n" |
| 2427 | "{},\n" |
| 2428 | "{})" |
| 2429 | .format(type(self).__name__, |
| 2430 | _indent_str(self._a), |
| 2431 | _indent_str(self._b))) |
| 2432 | |
| 2433 | def transform_affine(self, points): |
| 2434 | return self.get_affine().transform(points) |
nothing calls this directly
no test coverage detected