def init():
global fig1, ln_o, ln_x
ln_o, = plt.plot([], [], 'ro')
ln_x, = plt.plot([], [], 'bx')
plt.xlim(-disp_bound, disp_bound)
plt.ylim(-disp_bound, disp_bound)
plt.xlabel('x')
plt.ylabel('y')
return ln_o,
评论列表
文章目录