()
| 40 | A_values = np.hstack([np.linspace(0.1, 0.9, 100), |
| 41 | np.linspace(0.9, 0.1, 100)]) |
| 42 | def init(): |
| 43 | ax.set_xlim(-1, 1) |
| 44 | ax.set_ylim(-1, 1) |
| 45 | ax.set_aspect('equal') |
| 46 | return curve, |
| 47 | def update(A): |
| 48 | x = A*np.cos(T) |
| 49 | y = np.sin(T) |
nothing calls this directly
no outgoing calls
no test coverage detected