(self, bounds)
| 956 | |
| 957 | @BboxBase.bounds.setter |
| 958 | def bounds(self, bounds): |
| 959 | l, b, w, h = bounds |
| 960 | points = np.array([[l, b], [l + w, b + h]], float) |
| 961 | if np.any(self._points != points): |
| 962 | self._points = points |
| 963 | self.invalidate() |
| 964 | |
| 965 | @property |
| 966 | def minpos(self): |
nothing calls this directly
no test coverage detected