MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / get_points

Method get_points

site-packages/matplotlib/transforms.py:977–983  ·  view source on GitHub ↗

Get the points of the bounding box directly as a numpy array of the form: ``[[x0, y0], [x1, y1]]``.

(self)

Source from the content-addressed store, hash-verified

975 return self._minpos[1]
976
977 def get_points(self):
978 """
979 Get the points of the bounding box directly as a numpy array
980 of the form: ``[[x0, y0], [x1, y1]]``.
981 """
982 self._invalid = 0
983 return self._points
984
985 def set_points(self, points):
986 """

Callers 8

setMethod · 0.45
get_pointsMethod · 0.45
get_pointsMethod · 0.45
transform_bboxMethod · 0.45
_get_axes_layoutMethod · 0.45
_plot_colorbarMethod · 0.45
_get_axes_layoutMethod · 0.45

Calls

no outgoing calls