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

Method __init__

lib/matplotlib/transforms.py:2592–2604  ·  view source on GitHub ↗

Create a new `BboxTransform` that linearly transforms points from *boxin* to *boxout*.

(self, boxin, boxout, **kwargs)

Source from the content-addressed store, hash-verified

2590 is_separable = True
2591
2592 def __init__(self, boxin, boxout, **kwargs):
2593 """
2594 Create a new `BboxTransform` that linearly transforms
2595 points from *boxin* to *boxout*.
2596 """
2597 _api.check_isinstance(BboxBase, boxin=boxin, boxout=boxout)
2598
2599 super().__init__(**kwargs)
2600 self._boxin = boxin
2601 self._boxout = boxout
2602 self.set_children(boxin, boxout)
2603 self._mtx = None
2604 self._inverted = None
2605
2606 __str__ = _make_str_method("_boxin", "_boxout")
2607

Callers

nothing calls this directly

Calls 2

set_childrenMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected