Closed
Description
Scatter plot in Axes3D changes the color/alpha when rotating. Scatter became darker if closer to the viewer or lighter if far. I use matplotlib 1.2.1 following code:
import mpl_toolkits.mplot3d.axes3d as p3
fig = p.figure()
ax = p3.Axes3D(fig)
ax=fig.add_subplot(111,projection='3d')
ax.scatter(x[:,0],x[:,1],x[:,2],'o',c=cl,edgecolors=cl)
color table is custom array of tuples, one color tuple for each marker