diff --git a/lib/mpl_toolkits/mplot3d/axes3d.py b/lib/mpl_toolkits/mplot3d/axes3d.py index c517887436a6..b80c80940420 100644 --- a/lib/mpl_toolkits/mplot3d/axes3d.py +++ b/lib/mpl_toolkits/mplot3d/axes3d.py @@ -579,14 +579,6 @@ def get_w_lims(self): minz, maxz = self.get_zlim3d() return minx, maxx, miny, maxy, minz, maxz - def _determine_lims(self, xmin=None, xmax=None, *args, **kwargs): - if xmax is None and np.iterable(xmin): - xmin, xmax = xmin - if xmin == xmax: - xmin -= 0.05 - xmax += 0.05 - return (xmin, xmax) - def set_xlim3d(self, left=None, right=None, emit=True, auto=False, *, xmin=None, xmax=None): """