Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6391761

Browse files
committed
DOC Change ax.set_xlim3d to ax.set_xlim, etc.
1 parent 5dfe000 commit 6391761

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/mplot3d/2dcollections3d_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
# Make legend, set axes limits and labels
3030
ax.legend()
31-
ax.set_xlim3d(0, 1)
32-
ax.set_ylim3d(0, 1)
33-
ax.set_zlim3d(0, 1)
31+
ax.set_xlim(0, 1)
32+
ax.set_ylim(0, 1)
33+
ax.set_zlim(0, 1)
3434
ax.set_xlabel('X')
3535
ax.set_ylabel('Y')
3636
ax.set_zlabel('Z')

0 commit comments

Comments
 (0)