aboutsummaryrefslogtreecommitdiffstats
path: root/examples/3dgraphs/color.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/3dgraphs/color.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/3dgraphs/color.jl')
-rw-r--r--examples/3dgraphs/color.jl21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/3dgraphs/color.jl b/examples/3dgraphs/color.jl
new file mode 100644
index 0000000..09d8ee8
--- /dev/null
+++ b/examples/3dgraphs/color.jl
@@ -0,0 +1,21 @@
+
+# Original Python:
+# from pyx import *
+#
+# g = graph.graphxyz(size=4, projector=graph.graphxyz.parallel(170, 45))
+# g.plot(graph.data.file("color.dat", x=1, y=2, z=3, color=3),
+# [graph.style.surface(gradient=color.gradient.RedGreen,
+# gridcolor=color.rgb.black,
+# backcolor=color.rgb.black)])
+# g.writeEPSfile("color")
+# g.writePDFfile("color")
+# g.writeSVGfile("color")
+
+g = graph.graphxyz(size=4, projector=graph_graphxyz.parallel(170, 45))
+plot(g, graph_data.file("examples/3dgraphs/color.dat", x=1, y=2, z=3, color=3),
+ [graph_style.surface(gradient=color_gradient.RedGreen,
+ gridcolor=color_rgb.black,
+ backcolor=color_rgb.black)])
+writeEPSfile(g, "color")
+writePDFfile(g, "color")
+