(self, bounds)
| 1037 | |
| 1038 | @BboxBase.bounds.setter |
| 1039 | def bounds(self, bounds): |
| 1040 | l, b, w, h = bounds |
| 1041 | points = np.array([[l, b], [l + w, b + h]], float) |
| 1042 | if np.any(self._points != points): |
| 1043 | self._points = points |
| 1044 | self.invalidate() |
| 1045 | |
| 1046 | @property |
| 1047 | def minpos(self): |
nothing calls this directly
no test coverage detected