pyvista.Plotter.view_yx#
- Plotter.view_yx(negative=False, render=True)[source]#
View the YX plane.
- Parameters:
Examples
View the YX plane of a built-in mesh example.
>>> from pyvista import examples >>> import pyvista as pv >>> airplane = examples.load_airplane() >>> pl = pv.Plotter() >>> _ = pl.add_mesh(airplane) >>> pl.view_yx() >>> pl.show()