Depth1Image.st
changeset 3263 bd92a12c9316
parent 3000 f893d6994da3
child 3274 13e575985231
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:#Depth1Image
    15 Image subclass:#Depth1Image
    14 	instanceVariableNames:''
    16 	instanceVariableNames:''
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    17 	category:'Graphics-Images'
    19 	category:'Graphics-Images'
    61     ^ 1
    63     ^ 1
    62 
    64 
    63     "Modified: 20.4.1996 / 23:40:06 / cg"
    65     "Modified: 20.4.1996 / 23:40:06 / cg"
    64 ! !
    66 ! !
    65 
    67 
    66 !Depth1Image methodsFor:'accessing - pixels'!
    68 !Depth1Image methodsFor:'accessing-pixels'!
    67 
    69 
    68 colorAtX:x y:y
    70 colorAtX:x y:y
    69     "retrieve a pixel at x/y; return a color.
    71     "retrieve a pixel at x/y; return a color.
    70      Pixels start at x=0 , y=0 for upper left pixel, end at
    72      Pixels start at x=0 , y=0 for upper left pixel, end at
    71      x = width-1, y=height-1 for lower right pixel"
    73      x = width-1, y=height-1 for lower right pixel"
   742 ! !
   744 ! !
   743 
   745 
   744 !Depth1Image class methodsFor:'documentation'!
   746 !Depth1Image class methodsFor:'documentation'!
   745 
   747 
   746 version
   748 version
   747     ^ '$Header: /cvs/stx/stx/libview/Depth1Image.st,v 1.43 1999-10-27 13:33:08 stefan Exp $'
   749     ^ '$Header: /cvs/stx/stx/libview/Depth1Image.st,v 1.44 2000-08-21 22:43:28 cg Exp $'
   748 ! !
   750 ! !