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

Method get_corners

lib/matplotlib/patches.py:1842–1850  ·  view source on GitHub ↗

Return the corners of the ellipse bounding box. The bounding box orientation is moving anti-clockwise from the lower left corner defined before rotation.

(self)

Source from the content-addressed store, hash-verified

1840 angle = property(get_angle, set_angle)
1841
1842 def get_corners(self):
1843 """
1844 Return the corners of the ellipse bounding box.
1845
1846 The bounding box orientation is moving anti-clockwise from the
1847 lower left corner defined before rotation.
1848 """
1849 return self.get_patch_transform().transform(
1850 [(-1, -1), (1, -1), (1, 1), (-1, 1)])
1851
1852 def get_vertices(self):
1853 """

Callers 2

test_corner_centerFunction · 0.95
test_hist_float16Function · 0.45

Calls 2

get_patch_transformMethod · 0.95
transformMethod · 0.45

Tested by 2

test_corner_centerFunction · 0.76
test_hist_float16Function · 0.36