From: <lee...@us...> - 2009-06-21 18:53:51
|
Revision: 7230 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7230&view=rev Author: leejjoon Date: 2009-06-21 18:53:49 +0000 (Sun, 21 Jun 2009) Log Message: ----------- Merged revisions 7229 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r7229 | leejjoon | 2009-06-21 14:44:53 -0400 (Sun, 21 Jun 2009) | 2 lines fixed axes.scatter bug that circular symbol style is ignored ........ Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7227 + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7229 Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-06-21 18:44:53 UTC (rev 7229) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-06-21 18:53:49 UTC (rev 7230) @@ -5287,7 +5287,7 @@ syms = { # a dict from symbol to (numsides, angle) 's' : (4,math.pi/4.0,0), # square - 'o' : (20,3,0), # circle + 'o' : (0,0,3), # circle '^' : (3,0,0), # triangle up '>' : (3,math.pi/2.0,0), # triangle right 'v' : (3,math.pi,0), # triangle down @@ -5375,7 +5375,7 @@ numsides, rotation = marker[0], marker[2] sym = True - if marker[1] in (1,2): + if marker[1] in (1,2,3): symstyle = marker[1] else: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |