@@ -85,7 +85,7 @@ def __init__(self, fig, rect=None, *args, **kwargs):
8585
8686 # func used to format z -- fall back on major formatters
8787 self .fmt_zdata = None
88-
88+
8989 if zscale is not None :
9090 self .set_zscale (zscale )
9191
@@ -609,10 +609,10 @@ def set_zticks(self, *args, **kwargs):
609609 .. versionadded:: 1.1.0
610610 """
611611 return self .zaxis .set_ticks (* args , ** kwargs )
612-
612+
613613 def get_zticks (self , minor = False ):
614614 """
615- Return the z ticks as a list of locations
615+ Return the z ticks as a list of locations
616616 See :meth:`matplotlib.axes.Axes.get_yticks` for more details.
617617
618618 .. note::
@@ -634,7 +634,7 @@ def get_zmajorticklabels(self) :
634634 def get_zminorticklabels (self ) :
635635 """
636636 Get the ztick labels as a list of Text instances
637-
637+
638638 .. note::
639639 Minor ticks are not supported. This function was added
640640 only for completeness.
@@ -1045,6 +1045,7 @@ def grid(self, b=True, **kwargs):
10451045 Set / unset 3D grid.
10461046
10471047 .. note::
1048+
10481049 Currently, this function does not behave the same as
10491050 :meth:`matplotlib.axes.Axes.grid`, but it is intended to
10501051 eventually support that behavior.
@@ -1360,7 +1361,7 @@ def plot_surface(self, X, Y, Z, *args, **kwargs):
13601361 # then an exception is automatically thrown.
13611362 X .shape = (rows , cols )
13621363 Y .shape = (rows , cols )
1363-
1364+
13641365 rstride = kwargs .pop ('rstride' , 10 )
13651366 cstride = kwargs .pop ('cstride' , 10 )
13661367
@@ -1396,7 +1397,7 @@ def plot_surface(self, X, Y, Z, *args, **kwargs):
13961397 #colset contains the data for coloring: either average z or the facecolor
13971398 colset = []
13981399 for rs in xrange (0 , rows - 1 , rstride ):
1399- for cs in xrange (0 , cols - 1 , cstride ):
1400+ for cs in xrange (0 , cols - 1 , cstride ):
14001401 ps = []
14011402 for a in (X , Y , Z ) :
14021403 ztop = a [rs ,cs :min (cols , cs + cstride + 1 )]
@@ -2167,7 +2168,7 @@ def get_test_data(delta=0.05):
21672168
21682169
21692170########################################################
2170- # Register Axes3D as a 'projection' object available
2171+ # Register Axes3D as a 'projection' object available
21712172# for use just like any other axes
21722173########################################################
21732174import matplotlib .projections as proj
0 commit comments