aboutsummaryrefslogtreecommitdiffstats
path: root/examples/drawing/arrow.jl
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-02-21 18:08:55 -0800
committerbnewbold <bnewbold@robocracy.org>2016-02-21 18:08:55 -0800
commitb24f282bca4af63982937c10835063d3e6e9eb74 (patch)
treefd8c58601beb3964ccecf4709f7b28944fc1c36b /examples/drawing/arrow.jl
parent84572be10cdfc852530787a5dc78ddef3e0f23cd (diff)
downloadPyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.tar.gz
PyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.zip
add many, many more example conversions. still not complete
Diffstat (limited to 'examples/drawing/arrow.jl')
-rw-r--r--examples/drawing/arrow.jl23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/drawing/arrow.jl b/examples/drawing/arrow.jl
new file mode 100644
index 0000000..ec2cb06
--- /dev/null
+++ b/examples/drawing/arrow.jl
@@ -0,0 +1,23 @@
+
+# Original Python:
+# from pyx import *
+
+# c = canvas.canvas()
+# c.stroke(path.curve(0, 0, 0, 4, 2, 4, 3, 3),
+# [style.linewidth.THICK, style.linestyle.dashed, color.rgb.blue,
+# deco.earrow([deco.stroked([color.rgb.red, style.linejoin.round]),
+# deco.filled([color.rgb.green])], size=1)])
+# c.writeEPSfile("arrow")
+# c.writePDFfile("arrow")
+# c.writeSVGfile("arrow")
+
+
+using PyX
+
+c = canvas.canvas()
+stroke(c, path.curve(0, 0, 0, 4, 2, 4, 3, 3),
+ [style_linewidth.THICK, style_linestyle.dashed, color_rgb.blue,
+ deco.earrow([deco.stroked([color_rgb.red, style_linejoin.round]),
+ deco.filled([color_rgb.green])], size=1)])
+writeEPSfile(c, "arrow")
+writePDFfile(c, "arrow")