pyvista.examples.downloads.download_sky_box_cube_map#

download_sky_box_cube_map()[source]#

Download a skybox cube map texture.

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.