Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0632c0 + b6249c9 commit d7563cdCopy full SHA for d7563cd
lib/mpl_toolkits/mplot3d/axes3d.py
@@ -437,7 +437,8 @@ def do_3d_projection(artist):
437
438
collections_and_patches = (
439
artist for artist in self._children
440
- if isinstance(artist, (mcoll.Collection, mpatches.Patch)))
+ if isinstance(artist, (mcoll.Collection, mpatches.Patch))
441
+ and artist.get_visible())
442
if self.computed_zorder:
443
# Calculate projection of collections and patches and zorder
444
# them. Make sure they are drawn above the grids.
0 commit comments