flip_z#
- DataSet.flip_z(point=None, transform_all_input_vectors=False, inplace=False)[source]#
Flip mesh about the z-axis.
Note
See also the notes at
transform()
which is used by this filter under the hood.- Parameters:
- Returns:
pyvista.DataSet
Flipped dataset.
Examples
>>> import pyvista >>> from pyvista import examples >>> pl = pyvista.Plotter(shape=(1, 2)) >>> pl.subplot(0, 0) >>> pl.show_axes() >>> mesh1 = examples.download_teapot().rotate_x(90, inplace=False) >>> _ = pl.add_mesh(mesh1) >>> pl.subplot(0, 1) >>> pl.show_axes() >>> mesh2 = mesh1.flip_z(inplace=False) >>> _ = pl.add_mesh(mesh2) >>> pl.show(cpos="xz")