()
| 63 | |
| 64 | |
| 65 | def test_zordered_error(): |
| 66 | # Smoke test for https://github.com/matplotlib/matplotlib/issues/26497 |
| 67 | lc = [(np.fromiter([0.0, 0.0, 0.0], dtype="float"), |
| 68 | np.fromiter([1.0, 1.0, 1.0], dtype="float"))] |
| 69 | pc = [np.fromiter([0.0, 0.0], dtype="float"), |
| 70 | np.fromiter([0.0, 1.0], dtype="float"), |
| 71 | np.fromiter([1.0, 1.0], dtype="float")] |
| 72 | |
| 73 | fig = plt.figure() |
| 74 | ax = fig.add_subplot(projection="3d") |
| 75 | ax.add_collection(Line3DCollection(lc), autolim="_datalim_only") |
| 76 | ax.scatter(*pc, visible=False) |
| 77 | plt.draw() |
| 78 | |
| 79 | |
| 80 | def test_all_points_on_plane(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…