pyvista.examples.downloads.download_sky_box_cube_map#

download_sky_box_cube_map(load=True)[source]#

Download a skybox cube map texture.

Parameters:
loadbool, default: True

Load the dataset after downloading it when True. Set this to False and only the filename will be returned.

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()
../../../_images/pyvista-examples-downloads-download_sky_box_cube_map-1_00_00.png

See also

Sky Box Cube Map Dataset

See this dataset in the Dataset Gallery for more info.

Cubemap Space 4k Dataset

Cubemap Space 16k Dataset

Cubemap Park Dataset

Physically Based Rendering

Example using this dataset.