void RectFill( struct RastPort *, SHORT, SHORT, SHORT, SHORT );
FUNCTION
Fills the rectangular region specified by the parameters with the chosen pen colors, areafill pattern, and drawing mode. If no areafill pattern is specified, fill the rectangular region with the FgPen color, taking into account the drawing mode.
INPUTS
rp
pointer to a RastPort structure
xmin
see next
ymin
(xmax,ymax) are the coordinates of the upper left corner and the lower right corner, respectively, of the rectangle.
NOTES
The following relation MUST be true:
(xmax >= xmin) and (ymax >= ymin)
BUGS
Complement mode with FgPen complements all bitplanes.