You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importploppasppimportscippassca=pp.data.scatter(1000)
b=a.copy()
b.coords['x'] +=sc.scalar(60, unit='m')
pp.scatter3d({'a': a, 'b': b})
And then make a spatial clip in Y using the clip3d tool under the figure, the green and red opaque clipping should be blue and orange instead, respectively.
This is because the clippings are added as new data on the figure, and they automatically get given an incremented artist number, which cycles through the colors.
We don't see this when using cbar=True because all artists are using the same colormapper.
The text was updated successfully, but these errors were encountered:
Example:
And then make a spatial clip in Y using the
clip3d
tool under the figure, the green and red opaque clipping should be blue and orange instead, respectively.This is because the clippings are added as new data on the figure, and they automatically get given an incremented artist number, which cycles through the colors.
We don't see this when using
cbar=True
because all artists are using the same colormapper.The text was updated successfully, but these errors were encountered: