Prop3D.rotate_z#
- Prop3D.rotate_z(angle: float) None[source]#
Rotate the entity about the z-axis.
- Parameters:
- angle
float Angle to rotate the entity about the z-axis in degrees.
- angle
Examples#
Download Python source code | Download Jupyter notebook
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()