home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
video
/
6
/
6_3.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1988-08-11
|
314 b
|
13 lines
/* Listing 6-3 */
FilledRectangle( x1, y1, x2, y2, n )
int x1,y1; /* upper left corner */
int x2,y2; /* lower right corner */
int n; /* pixel value */
{
int y;
for (y=y1; y<=y2; y++) /* draw rectangle as a set of */
Line( x1, y, x2, y, n ); /* adjacent horizontal lines */
}