File tree 3 files changed +7
-3
lines changed 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
# Copyright (C) 2003 <jdhunter@ace.bsd.uchicago.edu>
3
3
# $Header$
4
4
# $Log$
5
+ # Revision 1.31 2004/05/04 20:39:16 jdh2358
6
+ # fixed makefile and some text bugs
7
+ #
5
8
# Revision 1.30 2004/04/26 19:41:47 barrett
6
9
# Added a line to the htmldocs section to create the license.html.template file with the appropriate version number.
7
10
#
@@ -119,7 +122,6 @@ pyback:
119
122
tar cvfz pyback.tar.gz * .py matplotlib/* .py examples/* .py matplotlib/backends/* .py unit/* .py
120
123
121
124
htmldocs :
122
-
123
125
cp examples/* .py htdocs/examples; \
124
126
cp .matplotlibrc NUMARRAY_ISSUES API_CHANGES htdocs/; \
125
127
${PYTHON} license.py ${VERSION} htdocs/license.html.template; \
@@ -128,4 +130,5 @@ htmldocs:
128
130
${PYTHON} convert.py; \
129
131
tar cfz site.tar.gz * .html screenshots tut examples gd .matplotlibrc NUMARRAY_ISSUES API_CHANGES; \
130
132
cd ..; \
131
- cp -a matplotlib htdocs/;
133
+ cp -a matplotlib htdocs
134
+
Original file line number Diff line number Diff line change 10
10
ylabel ('voltage (mV)' )
11
11
title ('About as simple as it gets, folks' )
12
12
grid (True )
13
- # savefig('simple_plot')
13
+ savefig ('simple_plot' )
14
14
show ()
Original file line number Diff line number Diff line change @@ -367,6 +367,7 @@ RendererAgg::draw_text(const Py::Tuple& args) {
367
367
pixfmt::color_type p;
368
368
p.r = int (255 *r); p.b = int (255 *b); p.g = int (255 *g); p.a = int (255 *a);
369
369
370
+ y = y-font->image .height ;
370
371
for (size_t i=0 ; i<font->image .width ; ++i) {
371
372
for (size_t j=0 ; j<font->image .height ; ++j) {
372
373
if (i+x>=width) continue ;
You can’t perform that action at this time.
0 commit comments