Convert from model coordinates to plot coordinates.
(self, *xy)
| 1341 | return self._ax |
| 1342 | |
| 1343 | def convert(self, *xy): |
| 1344 | """ |
| 1345 | Convert from model coordinates to plot coordinates. |
| 1346 | |
| 1347 | """ |
| 1348 | assert len(xy) == 2 |
| 1349 | return self.grid_unit * (np.atleast_1d(xy) - self.origin) |
| 1350 | |
| 1351 | |
| 1352 | def _pop_multiple(_dict, default, *args): |
no outgoing calls
no test coverage detected