Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lib/matplotlib/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -1660,9 +1660,6 @@ def get_corners(self):
return self.get_patch_transform().transform(
[(-1, -1), (1, -1), (1, 1), (-1, 1)])

def _calculate_length_between_points(self, x0, y0, x1, y1):
return np.sqrt((x1 - x0)**2 + (y1 - y0)**2)

def get_vertices(self):
"""
Return the vertices coordinates of the ellipse.
Expand Down