(self, bbox, fontsize=None)
| 1155 | self.set_offset(_offset) |
| 1156 | |
| 1157 | def update_frame(self, bbox, fontsize=None): |
| 1158 | self.patch.set_bounds(bbox.x0, bbox.y0, |
| 1159 | bbox.width, bbox.height) |
| 1160 | |
| 1161 | if fontsize: |
| 1162 | self.patch.set_mutation_scale(fontsize) |
| 1163 | |
| 1164 | def draw(self, renderer): |
| 1165 | "draw the artist" |
no test coverage detected