ImageMask.st
changeset 8122 24692d82a3d5
parent 6479 388fa0684b52
child 8186 1ca1ff27bae7
equal deleted inserted replaced
8121:e9b681715859 8122:24692d82a3d5
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libview' }"
    12 "{ Package: 'stx:libview' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 Depth1Image subclass:#ImageMask
    16 Depth1Image subclass:#ImageMask
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    36 !
    38 !
    37 
    39 
    38 documentation
    40 documentation
    39 "
    41 "
    40     instances of this class represent image masks;
    42     instances of this class represent image masks;
    41     if added to an image (via #mask:), only pixels for which the 
    43     if added to an image (via #mask:), only pixels for which the
    42     corresponding mask pixel is 1 are drawn.
    44     corresponding mask pixel is 1 are drawn.
    43 
    45 
    44     ImageMask does not add anything new - basically, its a depth1-image.
    46     ImageMask does not add anything new - basically, it is a Depth1Image.
    45 
    47 
    46     [See also:]
    48     [See also:]
    47         Image ImageReader
    49         Image ImageReader
    48 
    50 
    49     [author:]
    51     [author:]
    50         Claus Gittinger
    52         Claus Gittinger
    51 "
    53 "
    52 
       
    53 ! !
    54 ! !
    54 
    55 
    55 !ImageMask methodsFor:'initialization'!
    56 !ImageMask methodsFor:'initialization'!
    56 
    57 
    57 initialize
    58 initialize
    79 ! !
    80 ! !
    80 
    81 
    81 !ImageMask class methodsFor:'documentation'!
    82 !ImageMask class methodsFor:'documentation'!
    82 
    83 
    83 version
    84 version
    84     ^ '$Header: /cvs/stx/stx/libview/ImageMask.st,v 1.4 2014-05-23 08:17:29 stefan Exp $'
    85     ^ '$Header$'
    85 ! !
    86 ! !
    86 
    87