@@ -1964,7 +1964,7 @@ def plot(self, xs, ys, *args, zdir='z', axlim_clip=False, **kwargs):
1964
1964
1965
1965
def fill_between (self , x1 , y1 , z1 , x2 , y2 , z2 , * ,
1966
1966
where = None , mode = 'auto' , facecolors = None , shade = None ,
1967
- ** kwargs ):
1967
+ axlim_clip = False , ** kwargs ):
1968
1968
"""
1969
1969
Fill the area between two 3D curves.
1970
1970
@@ -2010,6 +2010,9 @@ def fill_between(self, x1, y1, z1, x2, y2, z2, *,
2010
2010
Whether to shade the facecolors. If *None*, then defaults to *True*
2011
2011
for 'quad' mode and *False* for 'polygon' mode.
2012
2012
2013
+ axlim_clip : bool, default: False
2014
+ Whether to hide data that is outside the axes view limits.
2015
+
2013
2016
**kwargs
2014
2017
All other keyword arguments are passed on to `.Poly3DCollection`.
2015
2018
@@ -2080,7 +2083,7 @@ def fill_between(self, x1, y1, z1, x2, y2, z2, *,
2080
2083
polys .append (poly )
2081
2084
2082
2085
polyc = art3d .Poly3DCollection (polys , facecolors = facecolors , shade = shade ,
2083
- ** kwargs )
2086
+ axlim_clip = axlim_clip , ** kwargs )
2084
2087
self .add_collection (polyc )
2085
2088
2086
2089
self .auto_scale_xyz ([x1 , x2 ], [y1 , y2 ], [z1 , z2 ], had_data )
0 commit comments