remove none-existing reference
[PyX.git] / examples / drawing / strokefill.py
blob6afbf1f95f43fb3aa3ef4c85e898ee552402521c
1 from pyx import *
3 c = canvas.canvas()
4 c.stroke(path.rect(0, 0, 1, 1), [style.linewidth.Thick,
5 color.rgb.red,
6 deco.filled([color.rgb.green])])
7 c.writeEPSfile("strokefill")
8 c.writePDFfile("strokefill")