Return True if zero is within the valid values for the scale of the radial axis.
(self)
| 453 | return self.base() |
| 454 | |
| 455 | def _zero_in_bounds(self): |
| 456 | """ |
| 457 | Return True if zero is within the valid values for the |
| 458 | scale of the radial axis. |
| 459 | """ |
| 460 | vmin, vmax = self.base.axis._scale.limit_range_for_scale(0, 1, 1e-5) |
| 461 | return vmin == 0 |
| 462 | |
| 463 | def nonsingular(self, vmin, vmax): |
| 464 | # docstring inherited |
no test coverage detected