(fig_test, fig_ref)
| 916 | |
| 917 | @check_figures_equal() |
| 918 | def test_quiver3d_empty(fig_test, fig_ref): |
| 919 | fig_ref.add_subplot(projection='3d') |
| 920 | x = y = z = u = v = w = [] |
| 921 | ax = fig_test.add_subplot(projection='3d') |
| 922 | ax.quiver(x, y, z, u, v, w, length=0.1, pivot='tip', normalize=True) |
| 923 | |
| 924 | |
| 925 | @mpl3d_image_comparison(['quiver3d_masked.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…