Set this bounding box from the "frozen" bounds of another :class:`Bbox`.
(self, other)
| 993 | self.invalidate() |
| 994 | |
| 995 | def set(self, other): |
| 996 | """ |
| 997 | Set this bounding box from the "frozen" bounds of another |
| 998 | :class:`Bbox`. |
| 999 | """ |
| 1000 | if np.any(self._points != other.get_points()): |
| 1001 | self._points = other.get_points() |
| 1002 | self.invalidate() |
| 1003 | |
| 1004 | def mutated(self): |
| 1005 | 'Return whether the bbox has changed since init.' |
nothing calls this directly
no test coverage detected