我的Python代码中有很多地方,我使用matplotlib' s annotate
来绘制一般形式的箭头
out_arrow = dict(arrowstyle='-', color=path_color, linewidth=4)
ax.annotate('', xy=(x, y), xytext=(p, q), arrowprops=out_arrow)
但是所有这些箭头都有圆角,我需要它们是正方形(箭头经常邻接,在这种情况下我需要它们看起来是连续的)。
如何使用annotate
创建的箭头的方形结束?