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

Method get_points

lib/matplotlib/transforms.py:1245–1253  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1243 __str__ = _make_str_method("_bbox", "_locked_points")
1244
1245 def get_points(self):
1246 # docstring inherited
1247 if self._invalid:
1248 points = self._bbox.get_points()
1249 self._points = np.where(self._locked_points.mask,
1250 points,
1251 self._locked_points)
1252 self._invalid = 0
1253 return self._points
1254
1255 if DEBUG:
1256 _get_points = get_points

Callers 1

test_lockable_bboxFunction · 0.95

Calls 2

_checkMethod · 0.80
get_pointsMethod · 0.45

Tested by 1

test_lockable_bboxFunction · 0.76