From 357619c9af7ab7e3d016436f01c106cd1ac517d8 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Sun, 10 Nov 2019 19:35:14 +0100 Subject: [PATCH] Document scope of 3D scatter depthshading. Closes #15657. --- lib/mpl_toolkits/mplot3d/axes3d.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mpl_toolkits/mplot3d/axes3d.py b/lib/mpl_toolkits/mplot3d/axes3d.py index d4a2699b93e4..afecffb2bba0 100644 --- a/lib/mpl_toolkits/mplot3d/axes3d.py +++ b/lib/mpl_toolkits/mplot3d/axes3d.py @@ -2239,7 +2239,8 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True, For more details see the *c* argument of `~.axes.Axes.scatter`. depthshade : bool, optional, default: True Whether to shade the scatter markers to give the appearance of - depth. + depth. Each call to ``scatter()`` will perform its depthshading + independently. **kwargs All other arguments are passed on to `~.axes.Axes.scatter`.