remove debugging code
This commit is contained in:
parent
515c83d412
commit
bc5752a7c3
|
@ -1,5 +1,4 @@
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
import numpy as np
|
|
||||||
|
|
||||||
class DynamicSeries:
|
class DynamicSeries:
|
||||||
def __init__(self, fig, ax, x_lim = [0,10], y_lim = [0,10]):
|
def __init__(self, fig, ax, x_lim = [0,10], y_lim = [0,10]):
|
||||||
|
@ -93,7 +92,3 @@ class DynamicSeries:
|
||||||
self.fig.canvas.blit(self.fig.bbox)
|
self.fig.canvas.blit(self.fig.bbox)
|
||||||
self.fig.canvas.flush_events()
|
self.fig.canvas.flush_events()
|
||||||
return False
|
return False
|
||||||
|
|
||||||
fig, ax = plt.subplots()
|
|
||||||
d = DynamicSeries(fig, ax)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue