aboutsummaryrefslogtreecommitdiffstats
path: root/examples/3dgraphs/surface.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/3dgraphs/surface.jl')
-rw-r--r--examples/3dgraphs/surface.jl17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/3dgraphs/surface.jl b/examples/3dgraphs/surface.jl
new file mode 100644
index 0000000..e19a00c
--- /dev/null
+++ b/examples/3dgraphs/surface.jl
@@ -0,0 +1,17 @@
+
+# Original Python:
+# from pyx import *
+#
+# g = graph.graphxyz(size=4, x2=None, y2=None)
+# g.plot(graph.data.file("surface.dat", x=1, y=2, z=3), [graph.style.surface()])
+# g.writeEPSfile("surface")
+# g.writePDFfile("surface")
+# g.writeSVGfile("surface")
+
+using PyX
+
+g = graph.graphxyz(size=4, x2=nothing, y2=nothing)
+plot(g, graph_data.file("examples/3dgraphs/surface.dat", x=1, y=2, z=3),
+ [graph_style.surface()])
+writeEPSfile(g, "surface")
+writePDFfile(g, "surface")