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:
pointlist, optional

Point to rotate about. Defaults to center of mesh at center.

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.

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")
../../../_images/pyvista-DataSet-flip_z-1_00_00.png