(self)
| 680 | self._bbox_patch.set_mutation_scale(fontsize_in_pixel) |
| 681 | |
| 682 | def _update_clip_properties(self): |
| 683 | if self._bbox_patch: |
| 684 | clipprops = dict(clip_box=self.clipbox, |
| 685 | clip_path=self._clippath, |
| 686 | clip_on=self._clipon) |
| 687 | self._bbox_patch.update(clipprops) |
| 688 | |
| 689 | def set_clip_box(self, clipbox): |
| 690 | # docstring inherited. |
no test coverage detected