home *** CD-ROM | disk | FTP | other *** search
- /* Generated by Project Builder */
-
- #import <appkit/appkit.h>
- #import "CircleView.h"
- // for drawcircle function
- #import "drawcircle.h"
-
- @implementation CircleView
-
- - drawSelf:(NXRect *)rects :(int)rectCount
- {
- // erase current drawing
- [super erase];
- // use wraps file to draw circle
- drawcircle(x, y, angle, xScale, yScale);
- return self;
- }
-
- @end
-