aboutsummaryrefslogtreecommitdiffstats
path: root/examples/drawing/path.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/path.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/path.jl')
-rw-r--r--examples/drawing/path.jl20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/drawing/path.jl b/examples/drawing/path.jl
new file mode 100644
index 0000000..380d3ed
--- /dev/null
+++ b/examples/drawing/path.jl
@@ -0,0 +1,20 @@
+# Original Python:
+# from pyx import *
+
+# c = canvas.canvas()
+# c.stroke(path.line(0, 0, 3, 0))
+# c.stroke(path.rect(0, 1, 1, 1))
+# c.fill(path.circle(2.5, 1.5, 0.5))
+# c.writeEPSfile("path")
+# c.writePDFfile("path")
+# c.writeSVGfile("path")
+
+using PyX
+
+c = canvas.canvas()
+stroke(c, path.line(0, 0, 3, 0))
+stroke(c, path.rect(0, 1, 1, 1))
+pyx_fill(c, path.circle(2.5, 1.5, 0.5))
+
+writeEPSfile(c, "path")
+writePDFfile(c, "path")