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

Skip to content

Commit 4bd051a

Browse files
committed
Remove unused private method
1 parent 17412bf commit 4bd051a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/matplotlib/patches.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,9 +1660,6 @@ def get_corners(self):
16601660
return self.get_patch_transform().transform(
16611661
[(-1, -1), (1, -1), (1, 1), (-1, 1)])
16621662

1663-
def _calculate_length_between_points(self, x0, y0, x1, y1):
1664-
return np.sqrt((x1 - x0)**2 + (y1 - y0)**2)
1665-
16661663
def get_vertices(self):
16671664
"""
16681665
Return the vertices coordinates of the ellipse.

0 commit comments

Comments
 (0)