From: <ef...@us...> - 2007-09-30 20:32:33
|
Revision: 3902 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3902&view=rev Author: efiring Date: 2007-09-30 13:32:31 -0700 (Sun, 30 Sep 2007) Log Message: ----------- bugfix by Zack, confirmed by Gary Ruben. http://sourceforge.net/mailarchive/forum.php?thread_name=d8cf9020703071339y43354eaerbfa1a47d272e5d26%40mail.gmail.com&forum_name=matplotlib-users Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes3d.py Modified: trunk/matplotlib/lib/matplotlib/axes3d.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes3d.py 2007-09-30 20:08:50 UTC (rev 3901) +++ trunk/matplotlib/lib/matplotlib/axes3d.py 2007-09-30 20:32:31 UTC (rev 3902) @@ -510,8 +510,8 @@ # polys = [] boxes = [] - for rs in npy.arange(0,rows,rstride): - for cs in npy.arange(0,cols,cstride): + for rs in npy.arange(0,rows-1,rstride): + for cs in npy.arange(0,cols-1,cstride): ps = [] corners = [] for a,ta in [(X,tX),(Y,tY),(Z,tZ)]: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |