# Examples from pyvista.Plotter.window_size
# =========================================

# Change the window size from `200 x 200` to `400 x 400`.
import pyvista as pv
pl = pv.Plotter(window_size=[200, 200])
pl.window_size
pl.window_size = [400, 400]
pl.window_size

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

