pyvista.Axes.origin# property Axes.origin[source]# Return or set th origin of the axes in world coordinates. Examples >>> import pyvista as pv >>> axes = pv.Axes() >>> axes.origin (0.0, 0.0, 0.0) Set the origin of the camera. >>> axes.origin = (2.0, 1.0, 1.0) >>> axes.origin (2.0, 1.0, 1.0)