Martinho MA wrote:
> hello, I have a problem quiver:
> In my code there is:
> 
> fill(...)
> quiver(..)
> 
> but the arrows stay under the fill !! If I would like it, with a bit of 
> logic, I would wrote:
> 
> quiver(...)
> fill(...)

q = quiver(...)
q.set_zorder(10)

This will ensure the arrows are drawn on top of everything else.

> 
> Any help?
> By the way, how to make an extra arrow to be used as a scale, with some 
> text anotation?

In the examples directory, see quiver_demo.py.  It includes the 
quiverkey command, which is designed for exactly this.

Eric

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to