Revision: 7229
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7229&view=rev
Author:   leejjoon
Date:     2009-06-21 18:44:53 +0000 (Sun, 21 Jun 2009)

Log Message:
-----------
fixed axes.scatter bug that circular symbol style is ignored

Modified Paths:
--------------
    branches/v0_98_5_maint/lib/matplotlib/axes.py

Modified: branches/v0_98_5_maint/lib/matplotlib/axes.py
===================================================================
--- branches/v0_98_5_maint/lib/matplotlib/axes.py       2009-06-19 04:49:38 UTC 
(rev 7228)
+++ branches/v0_98_5_maint/lib/matplotlib/axes.py       2009-06-21 18:44:53 UTC 
(rev 7229)
@@ -5018,7 +5018,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
@@ -5095,7 +5095,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.

------------------------------------------------------------------------------
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to