()
| 109 | |
| 110 | |
| 111 | def test_generate_normals(): |
| 112 | # Smoke test for https://github.com/matplotlib/matplotlib/issues/29156 |
| 113 | vertices = ((0, 0, 0), (0, 5, 0), (5, 5, 0), (5, 0, 0)) |
| 114 | shape = Poly3DCollection([vertices], edgecolors='r', shade=True) |
| 115 | |
| 116 | fig = plt.figure() |
| 117 | ax = fig.add_subplot(projection='3d') |
| 118 | ax.add_collection3d(shape) |
| 119 | plt.draw() |
nothing calls this directly
no test coverage detected
searching dependent graphs…