(A)
| 45 | ax.set_aspect('equal') |
| 46 | return curve, |
| 47 | def update(A): |
| 48 | x = A*np.cos(T) |
| 49 | y = np.sin(T) |
| 50 | curve, = plt.plot(x,y,'b') |
| 51 | return curve, |
| 52 | ani = FuncAnimation(fig, update, A_values, |
| 53 | interval=20, # milliseconds |
| 54 | init_func=init, blit=True) |
nothing calls this directly
no outgoing calls
no test coverage detected