I created a box in pyvista. When I want to change the size of the box, I will change the bounds
values. However, I want to change the size of the box directly by interacting with the box in pyvista display, not in python code. Can I do that in Pyvista?
import pyvista as pv
bounds = [0, 1, 0, 1, 0, 1]
box = pv.Box(bounds)
pl = pv.Plotter()
pl.add_mesh(box)
pl.show()