(self)
| 403 | return tickdir |
| 404 | |
| 405 | def active_pane(self): |
| 406 | mins, maxs, tc, highs = self._get_coord_info() |
| 407 | info = self._axinfo |
| 408 | index = info['i'] |
| 409 | if not highs[index]: |
| 410 | loc = mins[index] |
| 411 | plane = self._PLANES[2 * index] |
| 412 | else: |
| 413 | loc = maxs[index] |
| 414 | plane = self._PLANES[2 * index + 1] |
| 415 | xys = np.array([tc[p] for p in plane]) |
| 416 | return xys, loc |
| 417 | |
| 418 | def draw_pane(self, renderer): |
| 419 | """ |
no test coverage detected