plot_scene#

MonostaticRCSPlotter.plot_scene(show=True)#

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

Whether to immediately display the plot. If True, the plot will be displayed using plotter.show(). If False, the plotter object is returned for further customization before rendering. The default is True.

Returns:
pyvista.Plotter or None

Returns the Plotter object if show is set to False. If show is True, the plot is displayed and no value is returned.