# Examples from pyvista.examples.planets.download_pluto_surface
# =============================================================

from pyvista import examples
texture = examples.planets.download_pluto_surface(texture=True)
texture.plot(zoom='tight', show_axes=False)

mesh = examples.planets.load_planet()
image_path = examples.planets.download_stars_sky_background(load=False)
mesh.plot(texture=texture, background=image_path)

# SEE ALSO:
#     Pluto Surface Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#pluto-surface-dataset
#     See this dataset in the Dataset Gallery for more info.
#     load_planet() https://docs.pyvista.org/api/examples/_autosummary/pyvista.examples.planets.load_planet.html#pyvista.examples.planets.load_planet
#     Load a planet as a sphere with texture coordinates.
#     3D Earth and Celestial Bodies https://docs.pyvista.org/examples/99-advanced/planets.html#planets-example
#     Example plot of the solar system.

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

