00001
00002 import matplotlib.pyplot as plt
00003 import threading
00004 import gtk.gdk
00005
00006 class graphicsThread(threading.Thread):
00007 def run(self):
00008 print "PlotHelper: Calling show()"
00009 plt.show()
00010 print "PlotHelper: Thread exiting"
00011
00012 def start():
00013 gtk.gdk.threads_init()
00014 plt.figure(1)
00015 graphicsThread().start()
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041