We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81dac7a commit 29a2a5dCopy full SHA for 29a2a5d
roboticstoolbox/backends/PyPlot/PyPlot.py
@@ -416,9 +416,9 @@ def getframe(self):
416
)
417
418
# make the background white, looks better than grey stipple
419
- self.ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
420
- self.ax.w_yaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
421
- self.ax.w_zaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
+ self.ax.xaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
+ self.ax.yaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
+ self.ax.zaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
422
plt.gcf().canvas.draw()
423
424
# render the frame and save as a PIL image in the list
0 commit comments