Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e407cb9

Browse files
committed
added blank background to figures
svn path=/trunk/matplotlib/; revision=314
1 parent 3956fdd commit e407cb9

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.matplotlibrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#### CONFIGURATION BEGINS HERE
2727
backend : GTKAgg # the default backend
28-
numerix : Numeric # Numeric or numarray
28+
numerix : numarray # Numeric or numarray
2929
interactive : False # see http://matplotlib.sourceforge.net/interactive.html
3030

3131
### LINES

TODO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@
380380

381381
-- DONE fix log bar - worked on OSX?
382382

383-
-- convert rank 1 arrays as per Flaviu's post
383+
-- DONE convert rank 1 arrays as per Flaviu's post
384384

385385
-- email tim log bar code after release
386386

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898

9999
if BUILD_TKAGG:
100100
try: import Tkinter
101-
except ImportError: print 'GTKAgg requires pygtk'
101+
except ImportError: print 'TKAgg requires TkInter'
102102
else:
103103
BUILD_AGG = 1
104104
build_tkagg(ext_modules, packages)

src/_backend_agg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RendererAgg::RendererAgg(unsigned int width, unsigned int height, double dpi,
4343

4444
pixFmt = new pixfmt(*renderingBuffer);
4545
rendererBase = new renderer_base(*pixFmt);
46-
rendererBase->clear(agg::rgba(1, 1, 1));
46+
rendererBase->clear(agg::rgba(1, 1, 1, 0));
4747

4848
theRenderer = new renderer(*rendererBase);
4949
rendererBin = new renderer_bin(*rendererBase);

0 commit comments

Comments
 (0)