Closed
Description
Original report at SourceForge, opened Thu Nov 19 15:42:05 2009
Following code does not represents the asked color variation for the plots in 3D.
Same problem appends if a variable size is asked for exemple (via s=z argument).
from mpl_toolkits.mplot3d.axes3d import *
import pylab as plt
x=y=z=range(10)
fig = plt.figure()
ax = Axes3D(fig)
ax.scatter3D(x,y,z,c=z,cmap=plt.cm.jet)
plt.show()
SourceForge History
- On Mon Jan 4 19:13:49 2010, by heeres: assigned_to: 100