Plotter
#
- class ansys.tools.visualization_interface.plotter.Plotter(backend: ansys.tools.visualization_interface.backends._base.BaseBackend = None)#
Base plotting class containing common methods and attributes.
This class is responsible for plotting objects using the specified backend.
- Parameters:
- backend
BaseBackend
,optional
Plotting backend to use, by default PyVistaBackend.
- backend
Overview#
Import detail#
from ansys.tools.visualization_interface.plotter import Plotter
Method detail#
- Plotter.plot(plottable_object: Any, **plotting_options)#
Plots an object using the specified backend.
- Parameters:
- plottable_object
Any
Object to plot.
- plotting_options
dict
Additional plotting options.
- plottable_object