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

from pyvista import examples
texture = examples.planets.download_mercury_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)

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