Skip to content

Commit 0a252bb

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

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

doc/users/whats_new/wireframe3d.rst

Lines 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)