home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Education Sampler 1992 [NeXTSTEP]
/
Education_1992_Sampler.iso
/
Programming
/
Documents
/
OOPClass
/
Examples
/
ExtendDraw
/
Rectangle.bproj
/
Rectangle.m
< prev
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
|
169 b
|
15 lines
#import "Rectangle.h"
@implementation Rectangle
-drawShape
{
PSsetgray(shade);
if(fill)
NXRectFill(&bbox);
else
NXFrameRect(&bbox);
return self;
}
@end