# Examples from pyvista.core.config.Config
# ========================================

# Disable the default array-length check performed by `pyvista.wrap()`:
import pyvista as pv
pv.global_config.validate_on_wrap = False
pv.global_config.validate_on_wrap = True  # restore default

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

