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
, theplotter
object is returned for further customization before rendering. The default isTrue
.
- showbool,
- Returns:
pyvista.Plotter
orNone
Returns the
Plotter
object ifshow
is set toFalse
. Ifshow
isTrue
, the plot is displayed and no value is returned.