rotate_x#
- RectilinearGrid.rotate_x(angle: float, point=(0.0, 0.0, 0.0), transform_all_input_vectors=False, inplace=False)#
Rotate mesh about the x-axis.
Note
See also the notes at
transform()
which is used by this filter under the hood.- Parameters
- angle
float
Angle in degrees to rotate about the x-axis.
- point
list
,optional
Point to rotate about. Defaults to origin
(0.0, 0.0, 0.0)
.- transform_all_input_vectorsbool,
optional
When
True
, all input vectors are transformed. Otherwise, only the points, normals and active vectors are transformed.- inplacebool,
optional
Updates mesh in-place.
- angle
- Returns
pyvista.DataSet
Rotated dataset.
Examples
Rotate a mesh 30 degrees about the x-axis.
>>> import pyvista >>> mesh = pyvista.Cube() >>> rot = mesh.rotate_x(30, inplace=False)
Plot the rotated mesh.
>>> pl = pyvista.Plotter() >>> _ = pl.add_mesh(rot) >>> _ = pl.add_mesh(mesh, style='wireframe', line_width=3) >>> _ = pl.add_axes_at_origin() >>> pl.show()