Return whether the x-limits have changed since init.
(self)
| 1119 | return self.mutatedx() or self.mutatedy() |
| 1120 | |
| 1121 | def mutatedx(self): |
| 1122 | """Return whether the x-limits have changed since init.""" |
| 1123 | return (self._points[0, 0] != self._points_orig[0, 0] or |
| 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.""" |
no outgoing calls
no test coverage detected