MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / mutatedx

Method mutatedx

lib/matplotlib/transforms.py:1121–1124  ·  view source on GitHub ↗

Return whether the x-limits have changed since init.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers 2

mutatedMethod · 0.95
set_default_intervalsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected