Renderer.set_position#
- Renderer.set_position(point, reset=False, render=True) None[source]#
Set camera position to a point.
Examples#
Download Python source code | Download Jupyter notebook
Move the camera far away to [7, 7, 7].
>>> import pyvista as pv
>>> mesh = pv.Cube()
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(mesh, show_edges=True)
>>> pl.set_position([7, 7, 7])
>>> pl.show()