Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0a252bb

Browse filesBrowse files
committed
Add what's new for wireframe plot
1 parent c93223d commit 0a252bb
Copy full SHA for 0a252bb

File tree

Expand file treeCollapse file tree

1 file changed

+14
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+14
-0
lines changed

‎doc/users/whats_new/wireframe3d.rst

Copy file name to clipboard
+14Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Zero r/cstride support in plot_wireframe
2+
----------------------------------------
3+
4+
Adam Hughes added support to mplot3d's plot_wireframe to draw only row or
5+
column line plots.
6+
7+
8+
Example::
9+
10+
from mpl_toolkits.mplot3d import Axes3D, axes3d
11+
fig = plt.figure()
12+
ax = fig.add_subplot(111, projection='3d')
13+
X, Y, Z = axes3d.get_test_data(0.05)
14+
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=0)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.