home *** CD-ROM | disk | FTP | other *** search
- /* A view class that dissolves one image into another */
-
- #import <appkit/View.h>
-
- @interface MorphView : View
- {
- id image0; // The NXImages which dissolve into one another
- id image1;
- }
-
- - initFrame: (NXRect *) frame;
-
- - morph : sender;
- - drawSelf:(const NXRect *) rects :(int) rectCount;
-
- @end
-