ScaleTransform.st
changeset 7950 6319458fdf4e
parent 7415 9a5397d090bf
child 8713 9d5e054e16db
equal deleted inserted replaced
7949:eea2873e09b7 7950:6319458fdf4e
     1 "{ Encoding: utf8 }"
     1 "
     2 
     2  COPYRIGHT (c) 1992 by Claus Gittinger
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     3 "{ Package: 'stx:libview' }"
    12 "{ Package: 'stx:libview' }"
     4 
    13 
     5 "{ NameSpace: Smalltalk }"
    14 "{ NameSpace: Smalltalk }"
     6 
    15 
     7 DisplayTransform variableFloatSubclass:#ScaleTransform
    16 DisplayTransform variableFloatSubclass:#ScaleTransform
    10 	poolDictionaries:''
    19 	poolDictionaries:''
    11 	category:'Graphics-Transformations'
    20 	category:'Graphics-Transformations'
    12 !
    21 !
    13 
    22 
    14 !ScaleTransform class methodsFor:'documentation'!
    23 !ScaleTransform class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 1992 by Claus Gittinger
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice.   This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person.  No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 !
    15 
    38 
    16 documentation
    39 documentation
    17 "
    40 "
    18     instances of ScaleTransform can be used to scale other objects in 2D space.
    41     instances of ScaleTransform can be used to scale other objects in 2D space.
    19     This one is used, if only a scale is applied, but no translation.
    42     This one is used, if only a scale is applied, but no translation.