 |
FillLines2 |
Function (ROM Call 0x199) |
Draws a filled area between two lines.
FillLines2 fills an area bounded with two lines which coordinates are given
in two WIN_RECT structures lower_line (lower bound) and upper_line (upper bound).
In fact, it draws a filled polygon whose vertices are
(lower_line.x0, lower_line.y0),
(lower_line.x1, lower_line.y1),
(upper_line.x0, upper_line.y0) and
(upper_line.x1, upper_line.y1)
using the attribute Attr. Supported attributes are the same as in command
FillTriangle. The drawn polygon will be clipped at the boundaries of the
area given by parameter clip. See SetCurClip for more
info about clipping areas. If lower_line is above upper_line,
nothing will be drawn. To be more precise, "above" means "closer to the top of the screen".
Uses: DrawClipLine, TIOS_abs
Used by: WinFillLines2