plot_scene#
- MonostaticRCSPlotter.plot_scene(show=True)[source]#
Plot the 3D scene including models, annotations, and results.
This method visualizes the 3D scene by rendering the mesh objects under the “model”, “annotations”, and “results” categories stored in self.all_scene_actors. The meshes are rendered using a default PyVista plotter.
- Parameters:
- showbool, default:
True Whether to immediately display the plot using the
plotter.show()method. IfFalse, theplotterobject is returned for further customization before rendering.
- showbool, default:
- Returns:
pyvista.PlotterorNoneReturns the
Plotterobject ifshowis set toFalse. Ifshowis set toTrue, the plot is displayed and no value is returned.