StrokingWrapper.st
changeset 254 1286cec58b5d
parent 253 5b27778f470a
child 262 55b430276719
--- a/StrokingWrapper.st	Thu May 09 10:33:21 1996 +0200
+++ b/StrokingWrapper.st	Thu May 09 10:43:59 1996 +0200
@@ -40,6 +40,10 @@
     a wrapper for a geometric object, which is to be drawn stroked.
     This allows any geometric thingy to be used as a component in a view.
 
+    (background info: geometrics are mathematical objects - they do not 
+     keep any color or lineStyle attributes. Wrappers add this information
+     and can also be used as components of a view)
+
     [see also:]
         FillingWrapper Geometric GraphicsContext
 
@@ -50,6 +54,8 @@
 
 examples
 "
+  wrap an ellipticArc and display it
+  (notice, that no automatic redraw is performed):
                                                                         [exBegin]
     |v e component|
 
@@ -63,6 +69,9 @@
     component displayOn:v.
                                                                         [exEnd]
 
+  wrap a rectangle and an ellipticArc,
+  and add them as components to a View
+  (notice, that doing so makes the redraw automatic):
                                                                         [exBegin]
     |v e component|
 
@@ -164,5 +173,5 @@
 !StrokingWrapper class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/StrokingWrapper.st,v 1.4 1996-05-09 08:33:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/StrokingWrapper.st,v 1.5 1996-05-09 08:43:53 cg Exp $'
 ! !