Depth4Image.st
changeset 3263 bd92a12c9316
parent 2864 dd151bfdff9d
child 3842 e97ae6061e75
equal deleted inserted replaced
3262:d6c250adb5c1 3263:bd92a12c9316
     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 
    12 
       
    13 "{ Package: 'stx:libview' }"
       
    14 
    13 Image subclass:#Depth4Image
    15 Image subclass:#Depth4Image
    14 	instanceVariableNames:''
    16 	instanceVariableNames:''
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    17 	category:'Graphics-Images'
    19 	category:'Graphics-Images'
    58     ^ 4
    60     ^ 4
    59 
    61 
    60     "Modified: 20.4.1996 / 23:40:18 / cg"
    62     "Modified: 20.4.1996 / 23:40:18 / cg"
    61 ! !
    63 ! !
    62 
    64 
    63 !Depth4Image methodsFor:'accessing - pixels'!
    65 !Depth4Image methodsFor:'accessing-pixels'!
    64 
    66 
    65 colorAtX:x y:y
    67 colorAtX:x y:y
    66     "retrieve a pixel at x/y; return a color.
    68     "retrieve a pixel at x/y; return a color.
    67      Pixels start at x=0 , y=0 for upper left pixel, end at
    69      Pixels start at x=0 , y=0 for upper left pixel, end at
    68      x = width-1, y=height-1 for lower right pixel"
    70      x = width-1, y=height-1 for lower right pixel"
   968 ! !
   970 ! !
   969 
   971 
   970 !Depth4Image class methodsFor:'documentation'!
   972 !Depth4Image class methodsFor:'documentation'!
   971 
   973 
   972 version
   974 version
   973     ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.39 1999-08-23 23:08:17 cg Exp $'
   975     ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.40 2000-08-21 22:43:37 cg Exp $'
   974 ! !
   976 ! !