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

Method bounds

lib/matplotlib/transforms.py:1039–1044  ·  view source on GitHub ↗
(self, bounds)

Source from the content-addressed store, hash-verified

1037
1038 @BboxBase.bounds.setter
1039 def bounds(self, bounds):
1040 l, b, w, h = bounds
1041 points = np.array([[l, b], [l + w, b + h]], float)
1042 if np.any(self._points != points):
1043 self._points = points
1044 self.invalidate()
1045
1046 @property
1047 def minpos(self):

Callers

nothing calls this directly

Calls 1

invalidateMethod · 0.95

Tested by

no test coverage detected