@@ -896,7 +896,7 @@ def _3d_extend_contour(self, cset, stride=5):
896
896
for col in colls :
897
897
self .collections .remove (col )
898
898
899
- def contour (self , X , Y , Z , levels = 10 , ** kwargs ):
899
+ def contour (self , X , Y , Z , * args , ** kwargs ):
900
900
'''
901
901
Create a 3D contour plot.
902
902
@@ -912,7 +912,7 @@ def contour(self, X, Y, Z, levels=10, **kwargs):
912
912
lines on this position in plane normal to zdir
913
913
========== ================================================
914
914
915
- Other keyword arguments are passed on to
915
+ The positional and other keyword arguments are passed on to
916
916
:func:`~matplotlib.axes.Axes.contour`
917
917
918
918
Returns a :class:`~matplotlib.axes.Axes.contour`
@@ -926,7 +926,7 @@ def contour(self, X, Y, Z, levels=10, **kwargs):
926
926
had_data = self .has_data ()
927
927
928
928
jX , jY , jZ = art3d .rotate_axes (X , Y , Z , zdir )
929
- cset = Axes .contour (self , jX , jY , jZ , ** kwargs )
929
+ cset = Axes .contour (self , jX , jY , jZ , * args , * *kwargs )
930
930
931
931
zdir = '-' + zdir
932
932
if extend3d :
@@ -948,7 +948,7 @@ def contourf(self, X, Y, Z, *args, **kwargs):
948
948
949
949
*X*, *Y*, *Z*: data points.
950
950
951
- Keyword arguments are passed on to
951
+ The positional and keyword arguments are passed on to
952
952
:func:`~matplotlib.axes.Axes.contourf`
953
953
954
954
Returns a :class:`~matplotlib.axes.Axes.contourf`
0 commit comments