pyvista.AxesAssembly.position#

property AxesAssembly.position: tuple[float, float, float][source]#

Return or set the position of the axes.

Examples

>>> import pyvista as pv
>>> axes = pv.AxesAssembly()
>>> axes.position = (1.0, 2.0, 3.0)
>>> axes.position
(1.0, 2.0, 3.0)