Property.show_edges#
- property Property.show_edges: bool[source]#
Return or set the visibility of edges.
Shows or hides the edges. Does not apply to a wireframe
style.
Examples#
Download Python source code | Download Jupyter notebook
Get the default edge visibility and visualize it.
>>> import pyvista as pv
>>> prop = pv.Property()
>>> prop.show_edges
False
>>> prop.plot()
Visualize setting the visibility to True.
>>> prop.show_edges = True
>>> prop.plot()
Used In#
Docstring Examples
Property.edge_color(1 use)Property.edge_opacity(1 use)Property.line_width(1 use)Property.render_lines_as_tubes(1 use)