home *** CD-ROM | disk | FTP | other *** search
- // NSBitmapImageRep_editing.h
- //
- // created by Martin Wennerberg on Sun 11-Aug-1996
- //
- // when who modification
-
- #import <AppKit/AppKit.h>
-
- struct RGBA
- {
- float r;
- float g;
- float b;
- float a;
- };
-
- @interface NSBitmapImageRep (editing)
- - (void) setRGBA:(struct RGBA) col atPoint:(NSPoint) point;
- - (struct RGBA) RGBAAtPoint:(NSPoint)point;
- @end
-