We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22474c5 commit 4c44a09Copy full SHA for 4c44a09
lib/mpl_toolkits/mplot3d/tests/test_axes3d.py
@@ -1389,6 +1389,7 @@ def test_axlim_clip(fig_test, fig_ref):
1389
Z = X + Y
1390
ax.plot_surface(X, Y, Z, facecolor='C1', edgecolors=None,
1391
rcount=50, ccount=50, axlim_clip=True)
1392
+ ax.plot_wireframe(X, Y, Z, color='C1', rcount=50, ccount=50, axlim_clip=True)
1393
# This ax.plot is to cover the extra surface edge which is not clipped out
1394
ax.plot([0.5, 0.5], [0, 1], [0.5, 1.5],
1395
color='k', linewidth=3, zorder=5, axlim_clip=True)
@@ -1408,6 +1409,7 @@ def test_axlim_clip(fig_test, fig_ref):
1408
1409
Z = Z[idx].reshape(11, 6)
1410
1411
rcount=50, ccount=50, axlim_clip=False)
1412
+ ax.plot_wireframe(X, Y, Z, color='C1', rcount=50, ccount=50, axlim_clip=False)
1413
1414
color='k', linewidth=3, zorder=5, axlim_clip=False)
1415
ax.scatter(X.ravel(), Y.ravel(), Z.ravel() + 1, axlim_clip=False)
0 commit comments