MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / inverted

Method inverted

lib/matplotlib/transforms.py:1732–1742  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
1745class TransformWrapper(Transform):

Callers 5

containsMethod · 0.45
fully_containsMethod · 0.45
__sub__Method · 0.45
invertedMethod · 0.45
invertedMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected