pyvista.Prop3D.rotate_x#

Prop3D.rotate_x(angle: float)[source]#

Rotate the entity about the x axis.

Parameters:
anglefloat

Angle to rotate the entity about the x axis in degrees.

Examples

Rotate the actor about the x axis 45 degrees. Note how this does not change the location of the underlying dataset.

>>> import pyvista as pv
>>> mesh = pv.Cube()
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(mesh, color='b')
>>> actor = pl.add_mesh(
...     mesh,
...     color='r',
...     style='wireframe',
...     line_width=5,
...     lighting=False,
... )
>>> actor.rotate_x(45)
>>> pl.show_axes()
>>> pl.show()
https://d33wubrfki0l68.cloudfront.net/d860314aeacb272f2a81a732b50a2a5ddaaaf1dd/2af01/_images/pyvista-prop3d-rotate_x-1_00_00.png