pyvista.Prop3D.rotate_z#

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

Rotate the entity about the z axis.

Parameters:
anglefloat

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

Examples

Rotate the actor about the Z 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_z(45)
>>> pl.show_axes()
>>> pl.show()
https://d33wubrfki0l68.cloudfront.net/78271869db4a7c3009784aad3a6c93a5b2b6d0ed/2f778/_images/pyvista-prop3d-rotate_z-1_00_00.png