@@ -7,7 +7,7 if 'linux' in sys.platform: | |||||
7 | matplotlib.use("TKAgg") |
|
7 | matplotlib.use("TKAgg") | |
8 |
|
8 | |||
9 | if 'darwin' in sys.platform: |
|
9 | if 'darwin' in sys.platform: | |
10 |
matplotlib.use(' |
|
10 | matplotlib.use('TKAgg') | |
11 | #Qt4Agg', 'GTK', 'GTKAgg', 'ps', 'agg', 'cairo', 'MacOSX', 'GTKCairo', 'WXAgg', 'template', 'TkAgg', 'GTK3Cairo', 'GTK3Agg', 'svg', 'WebAgg', 'CocoaAgg', 'emf', 'gdk', 'WX' |
|
11 | #Qt4Agg', 'GTK', 'GTKAgg', 'ps', 'agg', 'cairo', 'MacOSX', 'GTKCairo', 'WXAgg', 'template', 'TkAgg', 'GTK3Cairo', 'GTK3Agg', 'svg', 'WebAgg', 'CocoaAgg', 'emf', 'gdk', 'WX' | |
12 | import matplotlib.pyplot |
|
12 | import matplotlib.pyplot | |
13 |
|
13 | |||
@@ -33,20 +33,22 def createFigure(id, wintitle, width, height, facecolor="w", show=True): | |||||
33 | def closeFigure(show=False, fig=None): |
|
33 | def closeFigure(show=False, fig=None): | |
34 |
|
34 | |||
35 | matplotlib.pyplot.ioff() |
|
35 | matplotlib.pyplot.ioff() | |
36 |
# matplotlib.pyplot.pause(0 |
|
36 | # matplotlib.pyplot.pause(0) | |
37 |
|
37 | |||
38 | if show: |
|
38 | if show: | |
39 | matplotlib.pyplot.show() |
|
39 | matplotlib.pyplot.show() | |
40 |
|
40 | |||
41 | if fig != None: |
|
41 | if fig != None: | |
42 |
matplotlib.pyplot.close(fig |
|
42 | matplotlib.pyplot.close(fig) | |
43 |
matplotlib.pyplot.pause(0 |
|
43 | # matplotlib.pyplot.pause(0) | |
44 | # matplotlib.pyplot.ion() |
|
44 | # matplotlib.pyplot.ion() | |
|
45 | ||||
45 | return |
|
46 | return | |
46 |
|
47 | |||
47 | matplotlib.pyplot.close("all") |
|
48 | matplotlib.pyplot.close("all") | |
48 |
matplotlib.pyplot.pause(0 |
|
49 | # matplotlib.pyplot.pause(0) | |
49 | # matplotlib.pyplot.ion() |
|
50 | # matplotlib.pyplot.ion() | |
|
51 | ||||
50 | return |
|
52 | return | |
51 |
|
53 | |||
52 | def saveFigure(fig, filename): |
|
54 | def saveFigure(fig, filename): |
General Comments 0
You need to be logged in to leave comments.
Login now