Matplotlib 0.90
Found the bug in axes3d.py
lines 513, 514
please change:
for rs in nx.arange(0,rows,rstride):
for cs in nx.arange(0,cols,cstride):
to:
for rs in nx.arange(0,rows-1,rstride):
for cs in nx.arange(0,cols-1,cstride):
Otherwise I'm getting error: "IndexError: index out of bounds"
Thanks
|