(self)
| 457 | class AxesZero(Axes): |
| 458 | |
| 459 | def clear(self): |
| 460 | super().clear() |
| 461 | new_floating_axis = self.get_grid_helper().new_floating_axis |
| 462 | self._axislines.update( |
| 463 | xzero=new_floating_axis( |
| 464 | nth_coord=0, value=0., axis_direction="bottom", axes=self), |
| 465 | yzero=new_floating_axis( |
| 466 | nth_coord=1, value=0., axis_direction="left", axes=self), |
| 467 | ) |
| 468 | for k in ["xzero", "yzero"]: |
| 469 | self._axislines[k].line.set_clip_path(self.patch) |
| 470 | self._axislines[k].set_visible(False) |
| 471 | |
| 472 | |
| 473 | Subplot = Axes |
nothing calls this directly
no test coverage detected