Hi all,
I found that a matplotlib.text.Text istance reports wrong coordinates when
converted to str
I'm using version 1.0.1
this is the code in Text class:
def __str__(self):
return "Text(%g,%g,%s)"%(self._y,self._y,repr(self._text))
it is clearly reporting two times the y coordinates, and should be:
def __str__(self):
return "Text(%g,%g,%s)"%(self._x,self._y,repr(self._text))
I'm sorry if this is not the correct plase to report the bug, but I've not
been able to find
a bugtracker for matplotlib.
Andrea
------------------------------------------------------------------------------
Got Input? Slashdot Needs You.
Take our quick survey online. Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
Matplotlib-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-users