GraphicsContext.st
changeset 786 af5fecf93126
parent 785 6112ccde457f
child 952 91619d21efd7
--- a/GraphicsContext.st	Tue Jun 04 18:01:48 1996 +0200
+++ b/GraphicsContext.st	Tue Jun 04 19:04:41 1996 +0200
@@ -636,6 +636,20 @@
     "Modified: 28.5.1996 / 14:08:19 / cg"
 !
 
+dashStyle:aDashList offset:dashOffset
+    "define dashes. Each element of the dashList specifies the length
+     of a corresponding dash. For example, setting it to [4 4]
+     defines 4on-4off dashing; 
+     Setting it to [1 2 4 2] defines 1on-2off-4on-2off dashes.
+     The dashOffset specifies where in the dashList the dashing starts.
+     Ignored here - this may not be supported by all graphics devices."
+
+    ^ self
+
+    "Created: 4.6.1996 / 18:59:34 / cg"
+    "Modified: 4.6.1996 / 19:03:38 / cg"
+!
+
 font
     "return the current drawing font"
 
@@ -1483,6 +1497,6 @@
 !GraphicsContext class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.45 1996-06-04 16:01:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsContext.st,v 1.46 1996-06-04 17:04:24 cg Exp $'
 ! !
 GraphicsContext initialize!