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

Method __init__

lib/matplotlib/transforms.py:2856–2864  ·  view source on GitHub ↗

Parameters ---------- patch : `~.patches.Patch`

(self, patch)

Source from the content-addressed store, hash-verified

2854 """
2855
2856 def __init__(self, patch):
2857 """
2858 Parameters
2859 ----------
2860 patch : `~.patches.Patch`
2861 """
2862 # Defer to TransformedPath.__init__.
2863 super().__init__(patch.get_path(), patch.get_transform())
2864 self._patch = patch
2865
2866 def _revalidate(self):
2867 patch_path = self._patch.get_path()

Callers

nothing calls this directly

Calls 3

__init__Method · 0.45
get_pathMethod · 0.45
get_transformMethod · 0.45

Tested by

no test coverage detected