WindowingTransformation.st
changeset 8717 b40981a26bbd
parent 7059 2cfbbee08eb4
equal deleted inserted replaced
8716:f6a82eb8941e 8717:b40981a26bbd
   525 
   525 
   526 printOn:aStream
   526 printOn:aStream
   527     "append a user printed representation of the receiver to aStream.
   527     "append a user printed representation of the receiver to aStream.
   528      The format is suitable for a human - not meant to be read back."
   528      The format is suitable for a human - not meant to be read back."
   529 
   529 
   530     aStream nextPutAll:self class name.
   530     aStream nextPutAll:self className.
   531     aStream nextPutAll:' scale: '.
   531     aStream nextPutAll:' scale: '.
   532     scale printOn:aStream.
   532     scale printOn:aStream.
   533     aStream nextPutAll:' translation: '.
   533     aStream nextPutAll:' translation: '.
   534     translation printOn:aStream
   534     translation printOn:aStream
       
   535 
       
   536     "Modified: / 28-06-2019 / 09:23:31 / Claus Gittinger"
   535 ! !
   537 ! !
   536 
   538 
   537 !WindowingTransformation methodsFor:'private'!
   539 !WindowingTransformation methodsFor:'private'!
   538 
   540 
   539 inverseTranslation
   541 inverseTranslation