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

Method _revalidate

lib/matplotlib/transforms.py:2866–2873  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2864 self._patch = patch
2865
2866 def _revalidate(self):
2867 patch_path = self._patch.get_path()
2868 # Force invalidation if the patch path changed; otherwise, let base
2869 # class check invalidation.
2870 if patch_path != self._path:
2871 self._path = patch_path
2872 self._transformed_path = None
2873 super()._revalidate()
2874
2875
2876def _nonsingular(vmin, vmax, expander=0.001, tiny=1e-15, increasing=True):

Callers

nothing calls this directly

Calls 2

get_pathMethod · 0.45
_revalidateMethod · 0.45

Tested by

no test coverage detected