Colormap.st
changeset 1092 1b6391f333de
parent 944 8d100ca5857c
child 1351 6d5552229507
equal deleted inserted replaced
1091:194a0fce4530 1092:1b6391f333de
    15 	classVariableNames:''
    15 	classVariableNames:''
    16 	poolDictionaries:''
    16 	poolDictionaries:''
    17 	category:'Graphics-Images-Support'
    17 	category:'Graphics-Images-Support'
    18 !
    18 !
    19 
    19 
    20 !Colormap  class methodsFor:'documentation'!
    20 !Colormap class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    23 "
    23 "
    24  COPYRIGHT (c) 1994 by Claus Gittinger
    24  COPYRIGHT (c) 1994 by Claus Gittinger
    25 	      All Rights Reserved
    25 	      All Rights Reserved
    50     [see also:]
    50     [see also:]
    51         Color Image Form
    51         Color Image Form
    52 "
    52 "
    53 ! !
    53 ! !
    54 
    54 
    55 !Colormap  class methodsFor:'instance creation'!
    55 !Colormap class methodsFor:'instance creation'!
    56 
    56 
    57 fromColors:aColorArray
    57 fromColors:aColorArray
    58     "given a collection of real colors, return a new instance
    58     "given a collection of real colors, return a new instance
    59      of myself"
    59      of myself"
    60 
    60 
   184     ^ redVector size
   184     ^ redVector size
   185 
   185 
   186     "Modified: 23.4.1996 / 22:13:43 / cg"
   186     "Modified: 23.4.1996 / 22:13:43 / cg"
   187 ! !
   187 ! !
   188 
   188 
   189 !Colormap methodsFor:'accessing - internals'!
   189 !Colormap methodsFor:'accessing-internals'!
   190 
   190 
   191 blueVector
   191 blueVector
   192     "return the blueVector"
   192     "return the blueVector"
   193 
   193 
   194     ^ blueVector
   194     ^ blueVector
   308 
   308 
   309     "Created: 30.5.1996 / 16:28:27 / ca"
   309     "Created: 30.5.1996 / 16:28:27 / ca"
   310     "Modified: 30.5.1996 / 16:32:44 / ca"
   310     "Modified: 30.5.1996 / 16:32:44 / ca"
   311 ! !
   311 ! !
   312 
   312 
   313 !Colormap  class methodsFor:'documentation'!
   313 !Colormap class methodsFor:'documentation'!
   314 
   314 
   315 version
   315 version
   316     ^ '$Header: /cvs/stx/stx/libview/Colormap.st,v 1.19 1996-07-11 19:43:25 cg Exp $'
   316     ^ '$Header: /cvs/stx/stx/libview/Colormap.st,v 1.20 1996-10-27 14:12:04 cg Exp $'
   317 ! !
   317 ! !