Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 685ed0c

Browse files
committed
Docstring clarification in quiver.py; update to CHANGELOG.
svn path=/trunk/matplotlib/; revision=2738
1 parent 54cf23c commit 685ed0c

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

CHANGELOG

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1+
2006-08-31 Fixed alpha-handling bug in ColorConverter, affecting
2+
collections in general and contour/contourf in particular. - EF
3+
14
2006-08-30 ft2font.cpp: Added draw_rect_filled method (now used by mathtext2
25
to draw the fraction bar) to FT2Font - ES
36

4-
2006-08-29 setupext.py: wrap calls to tk.getvar() with str(). On some
7+
2006-08-29 setupext.py: wrap calls to tk.getvar() with str(). On some
58
systems, getvar returns a Tcl_Obj instead of a string - DSD
69

710
2006-08-28 mathtext2.py: Sub/superscripts can now be complex (i.e.
811
fractions etc.). The demo is also updated - ES
912

1013
2006-08-28 font_manager.py: Added /usr/local/share/fonts to list of
11-
X11 font directories - DSD
14+
X11 font directories - DSD
1215

1316
2006-08-28 mahtext2.py: Initial support for complex fractions. Also,
1417
rendering is now completely separated from parsing. The
1518
sub/superscripts now work better.
1619
Updated the mathtext2_demo.py - ES
1720

18-
2006-08-27 qt backends: don't create a QApplication when backend is
19-
imported, do it when the FigureCanvasQt is created. Simplifies
20-
applications where mpl is embedded in qt. Updated
21+
2006-08-27 qt backends: don't create a QApplication when backend is
22+
imported, do it when the FigureCanvasQt is created. Simplifies
23+
applications where mpl is embedded in qt. Updated
2124
embedding_in_qt* examples - DSD
2225

2326
2006-08-27 mahtext2.py: Now the fonts are searched in the OS font dir and

lib/matplotlib/quiver.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
2323
Arguments:
2424
25-
X, Y give the x and y coordinates of the arrow origins
25+
X, Y give the x and y coordinates of the arrow locations
26+
(default is tail of arrow; see 'pivot' kwarg)
2627
U, V give the x and y components of the arrow vectors
2728
C is an optional array used to map colors to the arrows
2829
@@ -88,7 +89,7 @@
8889
8990
* color = 'k' | any matplotlib color spec or sequence of color specs.
9091
This is a synonym for the PolyCollection facecolor kwarg.
91-
If C has been set, either via arg or kwarg, it has no effect.
92+
If C has been set, 'color' has no effect.
9293
9394
* All PolyCollection kwargs are valid, in the sense that they
9495
will be passed on to the PolyCollection constructor.

0 commit comments

Comments
 (0)