pymeshfix.MeshFix.plot#

MeshFix.plot(show_holes=True, **kwargs)#

Plot the mesh.

Parameters:
  • show_holes (bool, default: True) – Shows boundaries.

  • **kwargs (keyword arguments) – Additional keyword arguments. See pyvista.plot().

Examples

Load the example bunny mesh and plot it.

>>> from pyvista import examples
>>> from pymeshfix import MeshFix
>>> mesh = examples.download_bunny()
>>> mfix = MeshFix(mesh)
>>> mfix.plot(show_holes=True)