|
From: <ef...@us...> - 2008-01-26 00:11:44
|
Revision: 4896
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4896&view=rev
Author: efiring
Date: 2008-01-25 16:11:36 -0800 (Fri, 25 Jan 2008)
Log Message:
-----------
Apply patch by Manuel Metz to scatter docstring.
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/axes.py
Modified: branches/v0_91_maint/lib/matplotlib/axes.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/axes.py 2008-01-26 00:08:57 UTC (rev 4895)
+++ branches/v0_91_maint/lib/matplotlib/axes.py 2008-01-26 00:11:36 UTC (rev 4896)
@@ -4047,10 +4047,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 was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|