(self)
| 164 | self._shared_setter('linestyle', ls) |
| 165 | |
| 166 | def _bounds_from_inset_ax(self): |
| 167 | xlim = self._inset_ax.get_xlim() |
| 168 | ylim = self._inset_ax.get_ylim() |
| 169 | return (xlim[0], ylim[0], xlim[1] - xlim[0], ylim[1] - ylim[0]) |
| 170 | |
| 171 | def _update_connectors(self): |
| 172 | (x, y) = self._rectangle.get_xy() |
no test coverage detected