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

Method get_points

lib/matplotlib/transforms.py:1091–1097  ·  view source on GitHub ↗

Get the points of the bounding box as an array of the form ``[[x0, y0], [x1, y1]]``.

(self)

Source from the content-addressed store, hash-verified

1089 self._minpos[1] = val
1090
1091 def get_points(self):
1092 """
1093 Get the points of the bounding box as an array of the form
1094 ``[[x0, y0], [x1, y1]]``.
1095 """
1096 self._invalid = 0
1097 return self._points
1098
1099 def set_points(self, points):
1100 """

Callers 4

setMethod · 0.45
get_pointsMethod · 0.45
get_pointsMethod · 0.45
transform_bboxMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected