Hello,
I'm trying to use arrows but I'm a little stuck.

In [1]: import matplotlib

In [2]: matplotlib.__version__
Out[2]: '0.98.5.3'

First, simply

import matplotlib.pyplot as plt
plt.arrow(2,2,4,1)

doesn't show anything, while at least a figure with an arrow in is
expected (or it's by design?)

Secondly, with this simple script:

import matplotlib.pyplot as plt
plt.plot(range(10))
plt.arrow(2,2,4,1, linewidth=5)
plt.arrow(3,3,1,4)

the result is quite ugly :) Where is the arrow pointer (for example)?

I hope I'm missing something, but even in examples like "usetex_demo"
the arrows are drawn "by hand" :)

Thanks,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

<<attachment: mpl_arrowspng.png>>

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to