Property.plot#
- Property.plot(**kwargs) None[source]#
Plot this property on the Stanford Bunny.
This is useful for visualizing how this property would be applied to an actor.
- Parameters:
- **kwargs
dict,optional Keyword arguments for
pyvista.Plotter.
- **kwargs
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> prop = pv.Property(
... show_edges=True,
... color='brown',
... edge_color='blue',
... line_width=4,
... specular=1.0,
... )
>>> prop.plot()