(self, bbox, fontsize=None)
| 1079 | return x0 - bbox.x0, y0 - bbox.y0 |
| 1080 | |
| 1081 | def update_frame(self, bbox, fontsize=None): |
| 1082 | self.patch.set_bounds(bbox.bounds) |
| 1083 | if fontsize: |
| 1084 | self.patch.set_mutation_scale(fontsize) |
| 1085 | |
| 1086 | def draw(self, renderer): |
| 1087 | # docstring inherited |
no test coverage detected