home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import <appkit/appkit.h>
- #import <appkit/View.h>
-
- #define PROC void
- #define AND &&
- #define OR ||
- #define IS ==
- #define IS_NOT !=
- #define NOT !
- #define MOD %
-
- @interface DrawView:View
- {
- id paramsForm;
- id popUpButton;
- id stopButton;
- NXRect stopRect;
- BOOL running;
- float xc, yc; // coords of c
- float xmax, xmin, ymax, ymin; // sides of window
- float large; // sq of escape radius
- int pixelSize; // pixel sixe for printing
- int iterates; // max iteration power
- int colors; // no of shades of contours
- }
-
- + newFrame:(NXRect *)rect;
- - drawSelf:(NXRect *)rect :(int)count;
- - (PROC)drawline:(float)col :(float)p1 :(float) p2 :(float) q;
- - (PROC)initialValues;
- - (BOOL) continue;
- - setParamsForm:anObject;
- - setPopUpButton:anObject;
- - setStopButton:anObject;
- - getParams;
- - start:sender;
- - pixelSize:sender;
- - (float)pixelCol:(float)x :(float)y;
-
- @end
-