pyvista.Camera.focal_point# property Camera.focal_point[source]# Location of the camera’s focus in world coordinates. Examples >>> 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)