Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed3641 commit a1649d9Copy full SHA for a1649d9
1 file changed
examples/integral_demo.py
@@ -18,7 +18,7 @@ def func(x):
18
ix = arange(a, b, 0.01)
19
iy = func(ix)
20
verts = [(a,0)] + zip(ix,iy) + [(b,0)]
21
-poly = Polygon(verts, facecolor=0.8, edgecolor='k')
+poly = Polygon(verts, facecolor='0.8', edgecolor='k')
22
ax.add_patch(poly)
23
24
text(0.5 * (a + b), 30,
0 commit comments