.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/mesh/surface_height.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr__gallery_mesh_surface_height.py: Simple surface ============== Example showing a surface mesh .. GENERATED FROM PYTHON SOURCE LINES 7-35 .. image-sg:: /_gallery/mesh/images/sphx_glr_surface_height_001.webp :alt: surface height :srcset: /_gallery/mesh/images/sphx_glr_surface_height_001.webp :class: sphx-glr-single-img .. code-block:: Python # test_example = true import fastplotlib as fpl import numpy as np import pygfx as gfx figure = fpl.Figure(size=(700, 560), cameras="3d", controller_types="orbit") t = np.linspace(0, 6, 100).astype(np.float32) x = np.sin(t) y = np.cos(t * 2) z = (x.reshape(1, -1) * x.reshape(-1, 1)) * 50 # 100x100 surface = figure[0, 0].add_surface(z, cmap="bwr") # figure[0, 0].axes.grids.xy.visible = True figure[0, 0].camera.show_object(surface.world_object, (-2, 2, -3), up=(0, 0, 1)) figure.show() # NOTE: fpl.loop.run() should not be used for interactive sessions # See the "JupyterLab and IPython" section in the user guide if __name__ == "__main__": print(__doc__) fpl.loop.run() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.559 seconds) .. _sphx_glr_download__gallery_mesh_surface_height.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: surface_height.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: surface_height.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_