ftp.nice.ch/pub/next/tools/screen/backspace/GrayAquarium.NIHS.bs.tar.gz#/GrayAquarium/DuoImage.h

This is DuoImage.h in view mode; [Download] [Up]

/*  
 * 
 * DuoImage.h	-- flips between original and horizontally flipped images
 * 
 * Paul A. Griffin
 * 8/16/93
 */
#import <objc/Object.h>
#import <appkit/appkit.h>

#define HORIZONTAL 0
#define VERTICAL 1


@interface DuoImage:Object
{
	BOOL reversed;
	id originalImage; 
	id flippedImage;
}

- duoInit;
- initFromFile:(const char *)fileName;
- getSize:(NXSize *)imageSize;
- (id)theImage;
- flip:(int)whichWay;
- composite:(int)op toPoint:(const NXPoint *)point;
- dissolve:(float)delta toPoint:(const NXPoint *)point;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.