.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_mplot3d_wire3d.py: ================= 3D wireframe plot ================= A very basic demonstration of a wireframe plot. .. image:: /gallery/mplot3d/images/sphx_glr_wire3d_001.png :class: sphx-glr-single-img .. code-block:: python from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Grab some test data. X, Y, Z = axes3d.get_test_data(0.05) # Plot a basic wireframe. ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) plt.show() .. _sphx_glr_download_gallery_mplot3d_wire3d.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: wire3d.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: wire3d.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature Keywords: matplotlib code example, codex, python plot, pyplot `Gallery generated by Sphinx-Gallery `_