download_cubemap_park#
- download_cubemap_park(load: bool = True) Texture | str[source]#
Download a cubemap of a park.
Downloaded from http://www.humus.name/index.php?page=Textures by David Eck, and converted to a smaller 512x512 size for use with WebGL in his free, on-line textbook at http://math.hws.edu/graphicsbook
This work is licensed under a Creative Commons Attribution 3.0 Unported License.
- 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(lighting=None)
>>> dataset = examples.download_cubemap_park()
>>> _ = pl.add_actor(dataset.to_skybox())
>>> pl.set_environment_texture(dataset, is_srgb=True)
>>> pl.camera_position = 'xy'
>>> pl.camera.zoom(0.4)
>>> _ = pl.add_mesh(pv.Sphere(), pbr=True, roughness=0.1, metallic=0.5)
>>> pl.show()
See also
- Cubemap Park Dataset
See this dataset in the Dataset Gallery for more info.