1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Original Python:
# from pyx import *
# c = canvas.canvas()
# c.stroke(path.rect(0, 0, 1, 1), [style.linewidth.Thick,
# color.rgb.red,
# deco.filled([color.rgb.green])])
# c.writeEPSfile("strokefill")
# c.writePDFfile("strokefill")
# c.writeSVGfile("strokefill")
using PyX
c = canvas.canvas()
stroke(c, path.rect(0, 0, 1, 1),
[style_linewidth.Thick,
color_rgb.red,
deco.filled([color_rgb.green])])
writeEPSfile(c, "strokefill")
writePDFfile(c, "strokefill")
|