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

Method __init__

lib/matplotlib/transforms.py:2635–2646  ·  view source on GitHub ↗

Create a new `BboxTransformTo` that linearly transforms points from the unit bounding box to *boxout*.

(self, boxout, **kwargs)

Source from the content-addressed store, hash-verified

2633 is_separable = True
2634
2635 def __init__(self, boxout, **kwargs):
2636 """
2637 Create a new `BboxTransformTo` that linearly transforms
2638 points from the unit bounding box to *boxout*.
2639 """
2640 _api.check_isinstance(BboxBase, boxout=boxout)
2641
2642 super().__init__(**kwargs)
2643 self._boxout = boxout
2644 self.set_children(boxout)
2645 self._mtx = None
2646 self._inverted = None
2647
2648 __str__ = _make_str_method("_boxout")
2649

Callers

nothing calls this directly

Calls 2

set_childrenMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected