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 usingplotter.show(). IfFalse, theplotterobject is returned for further customization before rendering. The default isTrue.
- showbool,
- Returns:
pyvista.PlotterorNoneReturns the
Plotterobject ifshowis set toFalse. IfshowisTrue, the plot is displayed and no value is returned.