pyvista.AxesGeometrySource.shaft_length#
- property AxesGeometrySource.shaft_length: tuple[float, float, float][source]#
Length of the shaft for each axis.
Value must be non-negative.
Examples
>>> import pyvista as pv >>> axes_geometry_source = pv.AxesGeometrySource() >>> axes_geometry_source.shaft_length (0.8, 0.8, 0.8) >>> axes_geometry_source.shaft_length = 0.7 >>> axes_geometry_source.shaft_length (0.7, 0.7, 0.7) >>> axes_geometry_source.shaft_length = (1.0, 0.9, 0.5) >>> axes_geometry_source.shaft_length (1.0, 0.9, 0.5)