(self, x, pos=None)
| 229 | """ |
| 230 | |
| 231 | def __call__(self, x, pos=None): |
| 232 | vmin, vmax = self.axis.get_view_interval() |
| 233 | d = np.rad2deg(abs(vmax - vmin)) |
| 234 | digits = max(-int(np.log10(d) - 1.5), 0) |
| 235 | return f"{np.rad2deg(x):0.{digits}f}\N{DEGREE SIGN}" |
| 236 | |
| 237 | |
| 238 | class _AxisWrapper: |
nothing calls this directly
no test coverage detected