(self)
| 2194 | frozen.__doc__ = Transform.frozen.__doc__ |
| 2195 | |
| 2196 | def __str__(self): |
| 2197 | return ("{}(\n" |
| 2198 | "{},\n" |
| 2199 | "{})" |
| 2200 | .format(type(self).__name__, |
| 2201 | _indent_str(self._x), |
| 2202 | _indent_str(self._y))) |
| 2203 | |
| 2204 | def transform_non_affine(self, points): |
| 2205 | if self._x.is_affine and self._y.is_affine: |
nothing calls this directly
no test coverage detected