MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / transform_bbox

Method transform_bbox

site-packages/matplotlib/transforms.py:1477–1484  ·  view source on GitHub ↗

Transform the given bounding box. Note, for smarter transforms including caching (a common requirement for matplotlib figures), see :class:`TransformedBbox`.

(self, bbox)

Source from the content-addressed store, hash-verified

1475 return values
1476
1477 def transform_bbox(self, bbox):
1478 """
1479 Transform the given bounding box.
1480
1481 Note, for smarter transforms including caching (a common
1482 requirement for matplotlib figures), see :class:`TransformedBbox`.
1483 """
1484 return Bbox(self.transform(bbox.get_points()))
1485
1486 def get_affine(self):
1487 """

Callers 1

get_datalimMethod · 0.80

Calls 3

transformMethod · 0.95
BboxClass · 0.85
get_pointsMethod · 0.45

Tested by

no test coverage detected