()
| 591 | |
| 592 | @mpl3d_image_comparison(['plot_3d_from_2d.png'], tol=0.019, style='mpl20') |
| 593 | def test_plot_3d_from_2d(): |
| 594 | fig = plt.figure() |
| 595 | ax = fig.add_subplot(projection='3d') |
| 596 | xs = np.arange(0, 5) |
| 597 | ys = np.arange(5, 10) |
| 598 | ax.plot(xs, ys, zs=0, zdir='x') |
| 599 | ax.plot(xs, ys, zs=0, zdir='y') |
| 600 | |
| 601 | |
| 602 | @mpl3d_image_comparison(['fill_between_quad.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…