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