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
|