Return the corresponding inverse transformation. It holds ``x == self.inverted().transform(self.transform(x))``. The return value of this method should be treated as temporary. An update to *self* does not cause a corresponding update to its inverted copy.
(self)
| 1730 | return a |
| 1731 | |
| 1732 | def inverted(self): |
| 1733 | """ |
| 1734 | Return the corresponding inverse transformation. |
| 1735 | |
| 1736 | It holds ``x == self.inverted().transform(self.transform(x))``. |
| 1737 | |
| 1738 | The return value of this method should be treated as |
| 1739 | temporary. An update to *self* does not cause a corresponding |
| 1740 | update to its inverted copy. |
| 1741 | """ |
| 1742 | raise NotImplementedError() |
| 1743 | |
| 1744 | |
| 1745 | class TransformWrapper(Transform): |
no outgoing calls
no test coverage detected