Skip to content

Tidying up and tweaking mplot3d examples [MEP12] #6690

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 16, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
DOC Change ax.set_xlim3d to ax.set_xlim, etc.
  • Loading branch information
TrishGillett committed Oct 16, 2016
commit 885a82bbe3adf8d48f69898749d243496a03762c
6 changes: 3 additions & 3 deletions examples/mplot3d/2dcollections3d_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

# Make legend, set axes limits and labels
ax.legend()
ax.set_xlim3d(0, 1)
ax.set_ylim3d(0, 1)
ax.set_zlim3d(0, 1)
ax.set_xlim(0, 1)
ax.set_ylim(0, 1)
ax.set_zlim(0, 1)
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')
Expand Down