(self, *args, **kwargs)
| 1723 | is_affine = True |
| 1724 | |
| 1725 | def __init__(self, *args, **kwargs): |
| 1726 | Transform.__init__(self, *args, **kwargs) |
| 1727 | self._inverted = None |
| 1728 | |
| 1729 | def __array__(self, *args, **kwargs): |
| 1730 | # optimises the access of the transform matrix vs the superclass |