Re: [matplotlib-devel] ax.scatter broken for triangular markers

2010-08-18 Thread Thomas Robitaille
I can confirm that this now works fine - thanks for the quick fix! Tom On Aug 18, 2010, at 12:09 PM, Michael Droettboom wrote: > Should be fixed in r8648 now. > > Mike > > On 08/18/2010 11:45 AM, Thomas Robitaille wrote: >> Hi, >> >> I updated to the latest svn version of matplotlib this morn

Re: [matplotlib-devel] ax.scatter broken for triangular markers

2010-08-18 Thread Michael Droettboom
Should be fixed in r8648 now. Mike On 08/18/2010 11:45 AM, Thomas Robitaille wrote: > Hi, > > I updated to the latest svn version of matplotlib this morning, and > Axes.scatter seems to be broken when using marker='v', '>','<', or '^': > > import matplotlib > matplotlib.use('Agg') > import matpl

[matplotlib-devel] ax.scatter broken for triangular markers

2010-08-18 Thread Thomas Robitaille
Hi, I updated to the latest svn version of matplotlib this morning, and Axes.scatter seems to be broken when using marker='v', '>', '<', or '^': import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as mpl fig = mpl.figure() ax = fig.add_subplot(1,1,1) ax.scatter([1,2,3], [4,5,6], ma