This commit is contained in:
2021-05-08 13:55:56 +02:00
parent 97a34ca997
commit 2492edda48
7 changed files with 256 additions and 172 deletions

13
plot2d.py Normal file
View File

@@ -0,0 +1,13 @@
from matplotlib import pyplot as plt
class Plot2D:
def __init__(self, *args, **kwargs):
self.plot = plt.imshow(*args, **kwargs)
def set(self, value):
self.plot.set_data(value)