aboutsummaryrefslogtreecommitdiffstats
path: root/examples/drawing/strokefill.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/drawing/strokefill.jl')
-rw-r--r--examples/drawing/strokefill.jl20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/drawing/strokefill.jl b/examples/drawing/strokefill.jl
new file mode 100644
index 0000000..50b2d35
--- /dev/null
+++ b/examples/drawing/strokefill.jl
@@ -0,0 +1,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")