Transform the given bounding box. Note, for smarter transforms including caching (a common requirement for matplotlib figures), see :class:`TransformedBbox`.
(self, bbox)
| 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 | """ |
no test coverage detected