from typing import TYPE_CHECKING, Optional
from anastruct.fem.plotter.values import PlottingValues
if TYPE_CHECKING:
from matplotlib.axes import Axes
from matplotlib.figure import Figure
from anastruct.fem.system import SystemElements
[docs]
class Plotter(PlottingValues):
def __init__(self, system: "SystemElements", mesh: int):
super().__init__(system, mesh)
[docs]
self.system: "SystemElements" = system
[docs]
self.one_fig: Optional["Axes"] = None
[docs]
self.max_system_point_load: float = 0
[docs]
self.fig: Optional["Figure"] = None