Camera.focal_point#
- property Camera.focal_point: tuple[float, float, float][source]#
Location of the camera’s focus in world coordinates.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> pl.camera.focal_point
(0.0, 0.0, 0.0)
>>> pl.camera.focal_point = (2.0, 0.0, 0.0)
>>> pl.camera.focal_point
(2.0, 0.0, 0.0)
Used In#
Guides
- Cameras (1 use)
API Examples
Camera.extrinsic_matrix(1 use)download_reservoir(1 use)