fedoo.Mesh.plot

Mesh.plot(show_edges: bool = True, **kargs) None

Simple plot function using pyvista.

This function is proposed for quick visulation of Mesh. For advanced visualization, it is recommanded to build a DataSet object of the mesh before plotting (for instance fedoo.DataSet(mesh).plot()) or to convert the mesh to pyvista with the to_pyvista() method and directly use the pyvista plot funcitonnalities.

Parameters:
  • show_edges (bool) – If False, the edges are not plotted (default = True)

  • kargs (arguments directly passed to the pyvista) – plot method. See the documentation of pyvista for available options.