home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
Documents
/
OOPClass
/
Examples
/
ExtendDraw
/
Ellipse.bproj
/
AShape.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-06-26
|
315 b
|
23 lines
#import <objc/Object.h>
#import <dpsclient/wraps.h>
#import <appkit/View.h>
@interface AShape:Object
{
NXRect bbox;
int fill;
float shade;
}
-initShapeWithBBox:(NXRect *)r;
-setFill:(int)i;
-(int)fill;
-setShade:(float)s;
-(float)shade;
-setBbox:(NXRect *)r;
-(NXRect *)bbox;
-drawShape;
@end