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)
| 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 | """ |