Get the points of the bounding box directly as a numpy array of the form: ``[[x0, y0], [x1, y1]]``.
(self)
| 975 | return self._minpos[1] |
| 976 | |
| 977 | def get_points(self): |
| 978 | """ |
| 979 | Get the points of the bounding box directly as a numpy array |
| 980 | of the form: ``[[x0, y0], [x1, y1]]``. |
| 981 | """ |
| 982 | self._invalid = 0 |
| 983 | return self._points |
| 984 | |
| 985 | def set_points(self, points): |
| 986 | """ |
no outgoing calls