Skip to content
Closed
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
Wireframe allows for just one dimension of slide now
  • Loading branch information
hugadams committed Sep 22, 2014
commit 6b15915f9fdbbdfda108b7ae84defe3fde2f778a
4 changes: 2 additions & 2 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -1741,11 +1741,11 @@ def plot_wireframe(self, X, Y, Z, *args, **kwargs):
# This transpose will make it easy to obtain the columns.
tX, tY, tZ = np.transpose(X), np.transpose(Y), np.transpose(Z)

if rii:
if rstride:
rii = list(xrange(0, rows, rstride))
else:
rii = []
if cii:
if cstride:
cii = list(xrange(0, cols, cstride))
else:
cii = []
Expand Down