@@ -123,7 +123,7 @@ def set_top_view(self):
123123 Axes .set_ylim (self , - ydwl , ydw , auto = None )
124124
125125 def _init_axis (self ):
126- '''Init 3d axes; overrides creation of regular X/Y axes'''
126+ '''Init 3D axes; overrides creation of regular X/Y axes'''
127127 self .w_xaxis = axis3d .XAxis ('x' , self .xy_viewLim .intervalx ,
128128 self .xy_dataLim .intervalx , self )
129129 self .xaxis = self .w_xaxis
@@ -401,7 +401,7 @@ def autoscale_view(self, tight=None, scalex=True, scaley=True,
401401 """
402402 Autoscale the view limits using the data limits.
403403 See :meth:`matplotlib.axes.Axes.autoscale_view` for documentation.
404- Note that this function applies to the 3d axes, and as such
404+ Note that this function applies to the 3D axes, and as such
405405 adds the *scalez* to the function arguments.
406406
407407 .. versionchanged :: 1.1.0
@@ -463,7 +463,7 @@ def autoscale_view(self, tight=None, scalex=True, scaley=True,
463463 self .set_zlim3d (self .zz_dataLim .intervalx )
464464
465465 def get_w_lims (self ):
466- '''Get 3d world limits.'''
466+ '''Get 3D world limits.'''
467467 minx , maxx = self .get_xlim3d ()
468468 miny , maxy = self .get_ylim3d ()
469469 minz , maxz = self .get_zlim3d ()
@@ -697,7 +697,7 @@ def get_zticklines(self) :
697697
698698 def clabel (self , * args , ** kwargs ):
699699 """
700- This function is currently not implemented for 3d axes.
700+ This function is currently not implemented for 3D axes.
701701 Returns *None*.
702702 """
703703 return None
@@ -983,15 +983,15 @@ def get_zlabel(self) :
983983
984984 def get_frame_on (self ):
985985 """
986- Get whether the 3d axes panels are drawn
986+ Get whether the 3D axes panels are drawn
987987
988988 .. versionadded :: 1.1.0
989989 """
990990 return self ._frameon
991991
992992 def set_frame_on (self , b ):
993993 """
994- Set whether the 3d axes panels are drawn
994+ Set whether the 3D axes panels are drawn
995995
996996 ACCEPTS: [ *True* | *False* ]
997997
@@ -1257,7 +1257,7 @@ def plot(self, xs, ys, *args, **kwargs):
12571257 *zs* z value(s), either one for all points or one for
12581258 each point.
12591259 *zdir* Which direction to use as z ('x', 'y' or 'z')
1260- when plotting a 2d set.
1260+ when plotting a 2D set.
12611261 ========== ================================================
12621262
12631263 Other arguments are passed on to
@@ -1723,7 +1723,7 @@ def tricontourf(self, X, Y, Z, offset=None, zdir='z', *args, **kwargs):
17231723
17241724 def add_collection3d (self , col , zs = 0 , zdir = 'z' ):
17251725 '''
1726- Add a 3d collection object to the plot.
1726+ Add a 3D collection object to the plot.
17271727
17281728 2D collection types are converted to a 3D version by
17291729 modifying the object and adding z coordinate information.
@@ -1760,7 +1760,7 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c='b', *args, **kwargs):
17601760 *ys* or a single value to place all points in
17611761 the same plane. Default is 0.
17621762 *zdir* Which direction to use as z ('x', 'y' or 'z')
1763- when plotting a 2d set.
1763+ when plotting a 2D set.
17641764 *s* size in points^2. It is a scalar or an array of the same
17651765 length as *x* and *y*.
17661766
@@ -1828,7 +1828,7 @@ def bar(self, left, height, zs=0, zdir='z', *args, **kwargs):
18281828 *zs* Z coordinate of bars, if one value is specified
18291829 they will all be placed at the same z.
18301830 *zdir* Which direction to use as z ('x', 'y' or 'z')
1831- when plotting a 2d set.
1831+ when plotting a 2D set.
18321832 ========== ================================================
18331833
18341834 Keyword arguments are passed onto :func:`~matplotlib.axes.Axes.bar`.
0 commit comments