(self, vmin, vmax)
| 461 | return vmin == 0 |
| 462 | |
| 463 | def nonsingular(self, vmin, vmax): |
| 464 | # docstring inherited |
| 465 | if self._zero_in_bounds() and (vmin, vmax) == (-np.inf, np.inf): |
| 466 | # Initial view limits |
| 467 | return (0, 1) |
| 468 | else: |
| 469 | return self.base.nonsingular(vmin, vmax) |
| 470 | |
| 471 | def view_limits(self, vmin, vmax): |
| 472 | vmin, vmax = self.base.view_limits(vmin, vmax) |
no test coverage detected