pyvista.AxesGeometrySource.shaft_radius#
- property AxesGeometrySource.shaft_radius: tuple[float, float, float][source]#
Radius of the axes shafts.
Value must be non-negative.
Examples
>>> 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)