OrientedFillStyle.st
changeset 7785 9167fca33dcf
parent 6687 706f61ac0637
equal deleted inserted replaced
7784:6ec54c62f889 7785:9167fca33dcf
       
     1 "
       
     2  COPYRIGHT (c) 2014 by eXept Software AG
       
     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 "
     1 "{ Package: 'stx:libview' }"
    12 "{ Package: 'stx:libview' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
     2 
    15 
     3 FillStyle subclass:#OrientedFillStyle
    16 FillStyle subclass:#OrientedFillStyle
     4 	instanceVariableNames:'form origin direction normal'
    17 	instanceVariableNames:'form origin direction normal'
     5 	classVariableNames:''
    18 	classVariableNames:''
     6 	poolDictionaries:''
    19 	poolDictionaries:''
     7 	category:'Compatibility-Squeak-Balloon-Fills'
    20 	category:'Compatibility-Squeak-Balloon-Fills'
     8 !
    21 !
     9 
    22 
    10 !OrientedFillStyle class methodsFor:'documentation'!
    23 !OrientedFillStyle class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 2014 by eXept Software AG
       
    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 "
       
    38 !
    11 
    39 
    12 documentation
    40 documentation
    13 "
    41 "
    14     an as-yet unused class.
    42     an as-yet unused class.
    15     For now, this is present as compatibility class (for Squeak),
    43     For now, this is present as compatibility class (for Squeak),
    25     [see also:]
    53     [see also:]
    26 
    54 
    27 "
    55 "
    28 ! !
    56 ! !
    29 
    57 
    30 
       
    31 !OrientedFillStyle class methodsFor:'documentation'!
    58 !OrientedFillStyle class methodsFor:'documentation'!
    32 
    59 
    33 version
    60 version
    34     ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.3 2014-12-19 21:31:33 cg Exp $'
    61     ^ '$Header$'
    35 !
    62 !
    36 
    63 
    37 version_CVS
    64 version_CVS
    38     ^ '$Header: /cvs/stx/stx/libview/OrientedFillStyle.st,v 1.3 2014-12-19 21:31:33 cg Exp $'
    65     ^ '$Header$'
    39 ! !
    66 ! !
    40 
    67