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 / Rectangle.bproj / Rectangle.m < prev    next >
Encoding:
Text File  |  1992-06-26  |  169 b   |  15 lines

  1. #import "Rectangle.h"
  2.  
  3. @implementation Rectangle
  4.  
  5. -drawShape
  6. {
  7.     PSsetgray(shade);
  8.     if(fill)
  9.     NXRectFill(&bbox);
  10.     else
  11.     NXFrameRect(&bbox);
  12.     return self;
  13. }
  14.  
  15. @end