Re: [Matplotlib-users] 'fill' command broken in svn

2006-12-13 Thread Eric Firing
It's fixed now. Eric Rob Hetland wrote: > fill(x, y) returns an error like: [] > /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site- > packages/matplotlib/axes.py in update_datalim(self, xys) > 966 # and the data in xydata > 967 xys = asarray(xys

Re: [Matplotlib-users] 'fill' command broken in svn

2006-12-13 Thread Eric Firing
Rob, OK, thanks. That sounds like something resulting from the change I made to support 2D array input to plot. I will check it. Eric Rob Hetland wrote: > fill(x, y) returns an error like: > > > /Users/rob/Projects/Merrimack/Grid/landfill.py in () > 24 for filename in filenames: >

[Matplotlib-users] 'fill' command broken in svn

2006-12-13 Thread Rob Hetland
fill(x, y) returns an error like: /Users/rob/Projects/Merrimack/Grid/landfill.py in () 24 for filename in filenames: 25 x, y, = pl.load(filename).T ---> 26 pl.fill(x, y, facecolor=fillcolor, alpha=fillalpha) 27 28 /Library/Frameworks/Python.framework/Versions/2.5