aboutsummaryrefslogtreecommitdiff
path: root/src/graph/PS/drawline.ps
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/PS/drawline.ps')
-rw-r--r--src/graph/PS/drawline.ps18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/graph/PS/drawline.ps b/src/graph/PS/drawline.ps
new file mode 100644
index 00000000..8294f15a
--- /dev/null
+++ b/src/graph/PS/drawline.ps
@@ -0,0 +1,18 @@
+% operand stack configuration in order to use psDrawLine:
+% psDrawLine
+% y0
+% x0
+% y1
+% x1
+% graphics-context dictionary
+% this draws a line from (x0, y0) to (x1, y1).
+
+/psDrawLine
+ { gsave
+ newpath
+ yVal moveto
+ yVal lineto
+ begin installGC stroke end
+ grestore }
+ def
+