Skip to content

Commit c250efe

Browse files
committed
added Andrews fill patch
svn path=/trunk/matplotlib/; revision=183
1 parent c843221 commit c250efe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

examples/fill_demo.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from matplotlib.matlab import *
2+
t = arange(0.0, 1.01, 0.01)
3+
s = sin(2*2*pi*t)
4+
5+
fill(t, s, 'r')
6+
grid(True)
7+
show()

0 commit comments

Comments
 (0)