Transform the given bounding box. For smarter transforms including caching (a common requirement in Matplotlib), see `TransformedBbox`.
(self, bbox)
| 1618 | return values |
| 1619 | |
| 1620 | def transform_bbox(self, bbox): |
| 1621 | """ |
| 1622 | Transform the given bounding box. |
| 1623 | |
| 1624 | For smarter transforms including caching (a common requirement in |
| 1625 | Matplotlib), see `TransformedBbox`. |
| 1626 | """ |
| 1627 | return Bbox(self.transform(bbox.get_points())) |
| 1628 | |
| 1629 | def get_affine(self): |
| 1630 | """Get the affine part of this transform.""" |