download_sky_box_cube_map#
- download_sky_box_cube_map(load: bool = True) Texture | str[source]#
Download a skybox cube map texture.
- Parameters:
- Returns:
pyvista.TextureTexture containing a skybox.
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> dataset = examples.download_sky_box_cube_map()
>>> _ = pl.add_actor(dataset.to_skybox())
>>> pl.set_environment_texture(dataset)
>>> pl.show()
See also
- Sky Box Cube Map Dataset
See this dataset in the Dataset Gallery for more info.
- Physically Based Rendering
Example using this dataset.