Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c3a0a commit 455d992Copy full SHA for 455d992
1 file changed
examples/dynamic_demo_wx.py
@@ -20,6 +20,9 @@
20
21
Modification History:
22
$Log$
23
+Revision 1.5 2004/06/26 06:37:20 astraw
24
+Trivial bugfix to eliminate IndexError
25
+
26
Revision 1.4 2004/05/03 12:12:26 jdh2358
27
added bang header to examples
28
@@ -105,7 +108,7 @@ def GetToolBar(self):
105
108
106
109
def onTimer(self, evt):
107
110
self.count += 1
- if self.count > 99: self.count = 0
111
+ if self.count >= 60: self.count = 0
112
self.lines[0].set_data(self.ind, self.X[:,self.count])
113
self.canvas.draw()
114
self.canvas.gui_repaint()
0 commit comments