home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Graphics / Morph-2.0a / NSBitmapImageRep_editing.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-13  |  359 b   |  21 lines

  1. // NSBitmapImageRep_editing.h 
  2. //
  3. // created by Martin Wennerberg on Sun 11-Aug-1996
  4. //
  5. // when        who    modification
  6.  
  7. #import <AppKit/AppKit.h>
  8.  
  9. struct RGBA
  10. {
  11.     float r;
  12.     float g;
  13.     float b;
  14.     float a;
  15. };
  16.  
  17. @interface NSBitmapImageRep (editing)
  18. - (void) setRGBA:(struct RGBA) col atPoint:(NSPoint) point;
  19. - (struct RGBA) RGBAAtPoint:(NSPoint)point;
  20. @end
  21.