8000 Remove unused private helper method in mplot3d. · matplotlib/matplotlib@d143d4d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d143d4d

Browse files
committed
Remove unused private helper method in mplot3d.
unused since e76fd7f
1 parent eb6664f commit d143d4d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -579,14 +579,6 @@ def get_w_lims(self):
579579
minz, maxz = self.get_zlim3d()
580580
return minx, maxx, miny, maxy, minz, maxz
581581

582-
def _determine_lims(self, xmin=None, xmax=None, *args, **kwargs):
583-
if xmax is None and np.iterable(xmin):
584-
xmin, xmax = xmin
585-
if xmin == xmax:
586-
xmin -= 0.05
587-
xmax += 0.05
588-
return (xmin, xmax)
589-
590582
def set_xlim3d(self, left=None, right=None, emit=True, auto=False,
591583
*, xmin=None, xmax=None):
592584
"""

0 commit comments

Comments
 (0)
0