()
| 2594 | remove_text=True, |
| 2595 | style='mpl20') |
| 2596 | def test_arc_pathpatch(): |
| 2597 | ax = plt.subplot(1, 1, 1, projection="3d") |
| 2598 | a = mpatch.Arc((0.5, 0.5), width=0.5, height=0.9, |
| 2599 | angle=20, theta1=10, theta2=130) |
| 2600 | ax.add_patch(a) |
| 2601 | art3d.pathpatch_2d_to_3d(a, z=0, zdir='z') |
| 2602 | |
| 2603 | |
| 2604 | @image_comparison(baseline_images=['panecolor_rcparams.png'], |
nothing calls this directly
no test coverage detected
searching dependent graphs…