home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / video / 13 / 13_6.c < prev    next >
Encoding:
Text File  |  1988-08-11  |  303 b   |  13 lines

  1. /* Listing 13-6 */
  2.  
  3. FilledRectangle( x1, y1, x2, y2, n )
  4. int    x1,y1;            /* upper left corner */
  5. int    x2,y2;            /* lower right corner */
  6. int    n;            /* pixel value */
  7. {
  8.     int    y;
  9.  
  10.     for (y=y1; y<=y2; y++)        /* draw rectangle as a set of */
  11.       Line( x1, y, x2, y, n );    /*  adjacent horizontal lines */
  12. }
  13.