Get the points of the bounding box as an array of the form ``[[x0, y0], [x1, y1]]``.
(self)
| 1089 | self._minpos[1] = val |
| 1090 | |
| 1091 | def get_points(self): |
| 1092 | """ |
| 1093 | Get the points of the bounding box as an array of the form |
| 1094 | ``[[x0, y0], [x1, y1]]``. |
| 1095 | """ |
| 1096 | self._invalid = 0 |
| 1097 | return self._points |
| 1098 | |
| 1099 | def set_points(self, points): |
| 1100 | """ |
no outgoing calls
no test coverage detected