pyvista.AxesAssembly.scale#

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

Return or set the scaling factor applied to the axes.

Examples

>>> import pyvista as pv
>>> axes = pv.AxesAssembly()
>>> axes.scale = (2.0, 2.0, 2.0)
>>> axes.scale
(2.0, 2.0, 2.0)