WindowingTransformation.st
changeset 2804 7ff4242eb1ee
parent 2148 53800815fa32
child 2944 c1d0599fc178
equal deleted inserted replaced
2803:4c35c0de7b5a 2804:7ff4242eb1ee
   532 ! !
   532 ! !
   533 
   533 
   534 !WindowingTransformation methodsFor:'printing'!
   534 !WindowingTransformation methodsFor:'printing'!
   535 
   535 
   536 printOn:aStream
   536 printOn:aStream
       
   537     "append a user printed representation of the receiver to aStream.
       
   538      The format is suitable for a human - not meant to be read back."
       
   539 
   537     aStream nextPutAll:self class name.
   540     aStream nextPutAll:self class name.
   538     aStream nextPutAll:' scale: '.
   541     aStream nextPutAll:' scale: '.
   539     scale printOn:aStream.
   542     scale printOn:aStream.
   540     aStream nextPutAll:' translation: '.
   543     aStream nextPutAll:' translation: '.
   541     translation printOn:aStream
   544     translation printOn:aStream
   662 ! !
   665 ! !
   663 
   666 
   664 !WindowingTransformation class methodsFor:'documentation'!
   667 !WindowingTransformation class methodsFor:'documentation'!
   665 
   668 
   666 version
   669 version
   667     ^ '$Header: /cvs/stx/stx/libview/WindowingTransformation.st,v 1.17 1998-06-13 12:05:19 cg Exp $'
   670     ^ '$Header: /cvs/stx/stx/libview/WindowingTransformation.st,v 1.18 1999-07-15 19:41:52 cg Exp $'
   668 ! !
   671 ! !