allow_empty_mesh#

property MapdlTheme.allow_empty_mesh: bool#

Return or set whether to allow plotting empty meshes.

Examples

Enable plotting of empty meshes.

>>> import pyvista as pv
>>> pv.global_theme.allow_empty_mesh = True

Now add an empty mesh to a plotter

>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(pv.PolyData())
>>> pl.show()