home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* C implementation of a box draw algoritm using scanline */
- /************************************************************************/
-
- slow_solid_box(x, y, dx, dy, color)
- {
- int i;
- cls();
- for (i = 0; i < dy; i++)
- scanline(x, x + dx - 1, y + i, color);
- }