# Examples from pyvista.examples.downloads.download_masonry_texture
# =================================================================

# Create plot the masonry texture on a surface.
import pyvista as pv
from pyvista import examples
texture = examples.download_masonry_texture()
surf = pv.Cylinder()
surf.plot(texture=texture)

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