home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1995 August
/
NEBULA.mdf
/
SourceCode
/
OOP_Course
/
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
|
1993-01-18
|
169 b
|
15 lines
#import "Rectangle.h"
@implementation Rectangle
-drawShape
{
PSsetgray(shade);
if(fill)
NXRectFill(&bbox);
else
NXFrameRect(&bbox);
return self;
}
@end