# Examples from pyvista.plotting.themes.Theme.resample_environment_texture
# ========================================================================

# Enable resampling the environment texture globally.
import pyvista as pv
pv.global_theme.resample_environment_texture = True
pv.global_theme.resample_environment_texture

# Disable the resampling the environment texture.
import pyvista as pv
pv.global_theme.resample_environment_texture = False
pv.global_theme.resample_environment_texture

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

