pyvista.Plotter.generate_orbital_path#
- Plotter.generate_orbital_path(factor=3.0, n_points=20, viewup=None, shift=0.0)[source]#
Generate an orbital path around the data scene.
- Parameters:
- Returns:
pyvista.PolyData
PolyData containing the orbital path.
Examples
Generate an orbital path around a sphere.
>>> import pyvista as pv >>> plotter = pv.Plotter() >>> _ = plotter.add_mesh(pv.Sphere()) >>> viewup = [0, 0, 1] >>> orbit = plotter.generate_orbital_path( ... factor=2.0, n_points=50, shift=0.0, viewup=viewup ... )
See Orbiting for a full example using this method.