aboutsummaryrefslogtreecommitdiffstats
path: root/examples/drawing2d/smoothed.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/drawing2d/smoothed.jl')
-rw-r--r--examples/drawing2d/smoothed.jl23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/drawing2d/smoothed.jl b/examples/drawing2d/smoothed.jl
new file mode 100644
index 0000000..8bce718
--- /dev/null
+++ b/examples/drawing2d/smoothed.jl
@@ -0,0 +1,23 @@
+# Original Python:
+# from pyx import *
+
+# c = canvas.canvas()
+# p = path.line(0, 0, 2, 2)
+# p.append(path.curveto(2, 0, 3, 0, 4, 0))
+# c.stroke(p)
+# c.stroke(p, [deformer.smoothed(1.0), color.rgb.blue])
+# c.stroke(p, [deformer.smoothed(2.0), color.rgb.red])
+# c.writeEPSfile("smoothed")
+# c.writePDFfile("smoothed")
+# c.writeSVGfile("smoothed")
+
+using PyX
+
+c = canvas.canvas()
+p = path.line(0, 0, 2, 2)
+pyx_append(p, path.curveto(2, 0, 3, 0, 4, 0))
+stroke(c, p)
+stroke(c, p, [deformer.smoothed(1.0), color_rgb.blue])
+stroke(c, p, [deformer.smoothed(2.0), color_rgb.red])
+writeEPSfile(c, "smoothed")
+writePDFfile(c, "smoothed")