Skip to content

Null strides wireframe #4852

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 7 commits into from
Aug 3, 2015
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
Prev Previous commit
Add what's new for wireframe plot
  • Loading branch information
jenshnielsen committed Aug 2, 2015
commit 0a252bbe145f53e554cb9b4f367c791ec2678d26
14 changes: 14 additions & 0 deletions doc/users/whats_new/wireframe3d.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Zero r/cstride support in plot_wireframe
----------------------------------------

Adam Hughes added support to mplot3d's plot_wireframe to draw only row or
column line plots.


Example::

from mpl_toolkits.mplot3d import Axes3D, axes3d
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
X, Y, Z = axes3d.get_test_data(0.05)
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=0)