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

Method __init__

lib/matplotlib/transforms.py:2705–2711  ·  view source on GitHub ↗
(self, xt, yt, scale_trans, **kwargs)

Source from the content-addressed store, hash-verified

2703 have been transformed by *scale_trans*.
2704 """
2705 def __init__(self, xt, yt, scale_trans, **kwargs):
2706 super().__init__(**kwargs)
2707 self._t = (xt, yt)
2708 self._scale_trans = scale_trans
2709 self.set_children(scale_trans)
2710 self._mtx = None
2711 self._inverted = None
2712
2713 __str__ = _make_str_method("_t")
2714

Callers

nothing calls this directly

Calls 2

set_childrenMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected