2020
09-24
09-24
Matplotlib使用Cursor实现UI定位的示例代码
Matplotlib编程实现importmatplotlib.pyplotaspltimportnumpyasnpfrommatplotlib.widgetsimportCursorlineprops=dict(color="red",lw=2)fig,ax=plt.subplots(1,1,subplot_kw=dict(facecolor="lemonchiffon"))x=np.random.random(100)y=np.random.random(100)ax.scatter(x,y,marker="o",color="red")ax.set_xlim(-0.02,1.02)ax.set_ylim(-0.02,1.02)cursor=Cursor(ax,useblit=True,**lineprops)plt.s...
继续阅读 >