Hi,

might I ask again whether anyone can attend to update the doc-string of the scatter function ?

Manuel

Manuel Metz wrote:
There was a question on the matplotlib-users list about symbols in
[snip]
Btw: shouldn't the "verts" keyword be removed, since marker=(verts,0) is equivalent ?

Index: axes.py
===================================================================
--- axes.py	(revision 4835)
+++ axes.py	(working copy)
@@ -4144,10 +4144,22 @@
             'p' : pentagram
             'h' : hexagon
             '8' : octagon
-
-        If marker is None and verts is not None, verts is a sequence
-        of (x,y) vertices for a custom scatter symbol.
-
+        
+        The marker can also be a tuple (numsides, style, angle), which will
+        create a custom, regular symbol.
+        
+            numsides is the number of sides
+            
+            style is the style of the regular symbol:
+              0 : a regular polygon
+              1 : a star-like symbol
+              2 : an asterisk
+            
+            angle is the angle of rotation of the symbol
+        
+        Finally, marker can be (verts, 0), verts is a sequence of (x,y)
+        vertices for a custom scatter symbol.
+        
         s is a size argument in points squared.
 
         Any or all of x, y, s, and c may be masked arrays, in which
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to