Added folders for Artem's and Vova's modules

This commit is contained in:
Dmitriy Shishkov 2023-10-17 21:45:58 +03:00
parent c46182e2f8
commit 4e18a8d77b
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,48 @@
import numpy as np
import matplotlib.pyplot as plt
class GraphStatic:
@staticmethod
def plot(xs: np.ndarray, ys: np.ndarray, params: dict[str, str]) -> plt.Figure:
"""
строим график через
"""
ax, fig = plt.subplots(...)
""""
Все методы при этом статичные
"""
GraphStatic.__some_func(1, 2)
"""
И возвращаем Figure
"""
return fig
@staticmethod
def __some_func(arg1, agr2):
...
class GraphStatefull:
def __init__(self, xs: np.ndarray, ys: np.ndarray, params: dict[str, str]):
self.__xs = xs
self.__ys = ys
self.__params = params
ax, fig = plt.subplots(...)
self.__fig = fig
self.__ax = ax
"""
строим график
"""
def __some_func(self, arg1, arg2):
self.__ax.do_something(self.__params['something'])
def get_fig(self) -> plt.Figure:
return self.__fig

0
GraphWidget/__init__.py Normal file
View File

View File