()
| 1269 | |
| 1270 | @image_comparison(['polycollection_joinstyle'], remove_text=True, style='_classic_test') |
| 1271 | def test_polycollection_joinstyle(): |
| 1272 | # Bug #2890979 reported by Matthew West |
| 1273 | fig, ax = plt.subplots() |
| 1274 | verts = np.array([[1, 1], [1, 2], [2, 2], [2, 1]]) |
| 1275 | c = mpl.collections.PolyCollection([verts], linewidths=40) |
| 1276 | ax.add_collection(c) |
| 1277 | ax.set_xbound(0, 3) |
| 1278 | ax.set_ybound(0, 3) |
| 1279 | |
| 1280 | |
| 1281 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…