Return whether the y-limits have changed since init.
(self)
| 1124 | self._points[1, 0] != self._points_orig[1, 0]) |
| 1125 | |
| 1126 | def mutatedy(self): |
| 1127 | """Return whether the y-limits have changed since init.""" |
| 1128 | return (self._points[0, 1] != self._points_orig[0, 1] or |
| 1129 | self._points[1, 1] != self._points_orig[1, 1]) |
| 1130 | |
| 1131 | |
| 1132 | class TransformedBbox(BboxBase): |
no outgoing calls
no test coverage detected