Return the transform for linear scaling, which is just the `~matplotlib.transforms.IdentityTransform`.
(self)
| 213 | axis.set_minor_locator(NullLocator()) |
| 214 | |
| 215 | def get_transform(self): |
| 216 | """ |
| 217 | Return the transform for linear scaling, which is just the |
| 218 | `~matplotlib.transforms.IdentityTransform`. |
| 219 | """ |
| 220 | return IdentityTransform() |
| 221 | |
| 222 | def val_in_range(self, val): |
| 223 | """ |
nothing calls this directly
no test coverage detected