(self, *args, **kwargs)
| 1831 | self._inverted = None |
| 1832 | |
| 1833 | def __array__(self, *args, **kwargs): |
| 1834 | # optimises the access of the transform matrix vs. the superclass |
| 1835 | return self.get_matrix() |
| 1836 | |
| 1837 | def __eq__(self, other): |
| 1838 | if getattr(other, "is_affine", False) and hasattr(other, "get_matrix"): |
nothing calls this directly
no test coverage detected