reduce length of pattern lines by one order of magnitude to prevent problems with...
[PyX/mjg.git] / manual / rects.py
blob53416beeb93839074709fd447ab14ceaff849ef4
1 from pyx import *
3 c = canvas.canvas()
5 rect1 = path.path(path.moveto(0, 0), path.lineto(1, 0),
6 path.moveto(1, 0), path.lineto(1, 1),
7 path.moveto(1, 1), path.lineto(0, 1),
8 path.moveto(0, 1), path.lineto(0, 0))
10 rect2 = path.path(path.moveto(0, 0), path.lineto(0, 1),
11 path.lineto(1, 1), path.lineto(1, 0),
12 path.lineto(0, 0))
14 rect3 = path.path(path.moveto(0, 0), path.lineto(0, 1),
15 path.lineto(1, 1), path.lineto(1, 0),
16 path.closepath())
18 c.stroke(rect1, [trafo.scale(2), style.linewidth.THICK])
19 c.text(1, -0.7, "(a)", [text.halign.center])
21 c.stroke(rect2, [trafo.scale(2).translated(4, 0), style.linewidth.THICK])
22 c.text(5, -0.7, "(b)", [text.halign.center])
24 c.stroke(rect3, [trafo.scale(2).translated(8, 0), style.linewidth.THICK])
25 c.text(9, -0.7, "(c)", [text.halign.center])
27 c.stroke(rect3, [trafo.scale(2).translated(12, 0), style.linewidth.THICK, deco.filled([color.grey(0.95)])])
28 c.text(13, -0.7, "(d)", [text.halign.center])
30 c.writeEPSfile("rects")
31 c.writePDFfile("rects")