(self, v1, v2)
| 279 | self.create_dummy_axis() |
| 280 | |
| 281 | def __call__(self, v1, v2): |
| 282 | locs = super().tick_values(v1, v2) |
| 283 | return np.array(locs), len(locs), 1 # 1: factor (see angle_helper) |
| 284 | |
| 285 | |
| 286 | class FixedLocator: |
nothing calls this directly
no test coverage detected