pyvista.examples.downloads.download_sky_box_cube_map#
- download_sky_box_cube_map(load=True)[source]#
Download a skybox cube map texture.
- Parameters:
- Returns:
pyvista.Texture
Texture containing a skybox.
Examples
>>> 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.