AxesAssembly.shaft_radius#
- property AxesAssembly.shaft_radius: tuple[float, float, float][source]#
Radius of the axes shafts.
Value must be non-negative.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> axes_geometry_source = pv.AxesGeometrySource()
>>> axes_geometry_source.shaft_radius
(0.025, 0.025, 0.025)
>>> axes_geometry_source.shaft_radius = 0.05
>>> axes_geometry_source.shaft_radius
(0.05, 0.05, 0.05)