WindowingTransformation.st
changeset 46 7b331e9012fd
parent 5 e5942fea6925
child 54 29a6b2f8e042
--- a/WindowingTransformation.st	Thu Jun 02 23:21:42 1994 +0200
+++ b/WindowingTransformation.st	Fri Jun 03 02:54:39 1994 +0200
@@ -19,23 +19,43 @@
 WindowingTransformation comment:'
 COPYRIGHT (c) 1992 by Claus Gittinger
               All Rights Reserved
+'!
 
-I represent the ability to perform transformations in 2-D space.
+!WindowingTransformation class methodsFor: 'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1992 by Claus Gittinger
+              All Rights Reserved
 
-Instance variables are:
-scale           <Number> or <Point> representing a
-                                    linear scaling factor.
-translation     <Number> or <Point> representing a
-                                    translation in 2-D.
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
 
-All 2-D objects are supposed to be able to be transformed using
-instances of me.  Instances of me can also be combined to form a
-single composite transformation.
+version
+"
+$Header: /cvs/stx/stx/libview/WindowingTransformation.st,v 1.4 1994-06-03 00:54:06 claus Exp $
+"
+!
+
+documentation
+"
+    I represent the ability to perform transformations in 2-D space.
 
-$Header: /cvs/stx/stx/libview/WindowingTransformation.st,v 1.3 1993-10-13 00:46:41 claus Exp $
+    Instance variables are:
+        scale           <Number> or <Point> representing a linear scaling factor.
+        translation     <Number> or <Point> representing a translation in 2-D.
 
-written summer 92 by claus
-'!
+    All 2-D objects are supposed to be able to be transformed using
+    instances of me.  Instances of me can also be combined to form a
+    single composite transformation.
+"
+! !
 
 !WindowingTransformation methodsFor: 'accessing'!