Skip to content

Commit 3000e2c

Browse files
committed
axes connection fix
svn path=/trunk/matplotlib/; revision=443
1 parent c6d9268 commit 3000e2c

File tree

4 files changed

+146
-99
lines changed

4 files changed

+146
-99
lines changed

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Copyright (C) 2003 <jdhunter@ace.bsd.uchicago.edu>
33
# $Header$
44
# $Log$
5+
# Revision 1.37 2004/07/27 16:46:42 jdh2358
6+
# axes connection fix
7+
#
58
# Revision 1.36 2004/07/09 16:27:34 jdh2358
69
# make clean purges svg
710
#
@@ -125,7 +128,7 @@ clean:
125128
${PYTHON} setup.py clean;\
126129
find . -name "_tmp*.py" | xargs rm -f;\
127130
find . \( -name "*~" -o -name "*.pyc" \) | xargs rm -f;\
128-
find examples \( -name "*.svg" -name "*.png" -o -name "*.ps" -o -name "*.jpg" -o -name "*.eps" -o -name "*.tar" -name "*.gz" \) | xargs rm -f
131+
find examples \( -name "*.svg" -o -name "*.png" -o -name "*.ps" -o -name "*.jpg" -o -name "*.eps" -o -name "*.tar" -name "*.gz" \) | xargs rm -f
129132
find unit \( -name "*.png" -o -name "*.ps" -o -name "*.jpg" -o -name "*.eps" \) | xargs rm -f
130133
find . \( -name "#*" -o -name ".#*" -o -name ".*~" -o -name "*~" \) | xargs rm -f
131134

TODO

+5
Original file line numberDiff line numberDiff line change
@@ -504,3 +504,8 @@ Traceback (most recent call last):
504504
xdata, ydata = a.transData.inverse_xy_tup((thisEvent.x, thisEvent.y))
505505
ZeroDivisionError: SeparableTransformation::eval_scalars yin interval is zero; cannot transform
506506

507+
508+
-- some backends (ps and svg) appear to layout legend_demo2 text
509+
improperly
510+
511+
-- text colors for svg

examples/legend_demo2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
xlabel('time')
1818
ylabel('volts')
1919
title('Damped oscillation')
20-
#savefig('legend_demo2')
20+
savefig('legend_demo2')
2121
#axis([0,2,-1,1])
2222
show()
2323

images/matplotlib.svg

+136-97
Loading

0 commit comments

Comments
 (0)