(ax, **kwargs)
| 10 | |
| 11 | |
| 12 | def draw_quiver(ax, **kwargs): |
| 13 | X, Y = np.meshgrid(np.arange(0, 2 * np.pi, 1), |
| 14 | np.arange(0, 2 * np.pi, 1)) |
| 15 | U = np.cos(X) |
| 16 | V = np.sin(Y) |
| 17 | |
| 18 | Q = ax.quiver(U, V, **kwargs) |
| 19 | return Q |
| 20 | |
| 21 | |
| 22 | @pytest.mark.skipif(platform.python_implementation() != 'CPython', |
no test coverage detected
searching dependent graphs…