Select a scale for the range from vmin to vmax. Subclasses should override this method to change locator behaviour.
(self, vmin, vmax)
| 1796 | return mtransforms._nonsingular(v0, v1, expander=.05) |
| 1797 | |
| 1798 | def view_limits(self, vmin, vmax): |
| 1799 | """ |
| 1800 | Select a scale for the range from vmin to vmax. |
| 1801 | |
| 1802 | Subclasses should override this method to change locator behaviour. |
| 1803 | """ |
| 1804 | return mtransforms._nonsingular(vmin, vmax) |
| 1805 | |
| 1806 | |
| 1807 | class IndexLocator(Locator): |