table.
fb_bezier(x0, y0, x1, y1, x2, y2, width)
|
|
Draw a bezier curve through the points
( x0, y0),
( x1, y1),
and
( x2, y2)
of width
width.
The units are in pixels and have an origin of
(0, 0).
|
fb_drawrect(x0, y0, x1, y1, fill)
|
|
Fill in a rectangle with the pixel
fill
with the corners
( x0, y0)
and
( x1, y1).
The units are in pixels and have an origin of
(0, 0).
|
fb_line(x0, y0, x1, y1, width)
|
|
Draw a line from
( x0, y0)
to
( x1, y1)
with a width of
width.
The units are in pixels and have an origin of
(0, 0).
|
fb_putimage(name, x0, y0, x1, y1, f)
|
|
Load the PNG file
name
and place it in the rectangle
with the corners
( x0, y0)
and
( x1, y1)
and fill with pixel
f.
The units are in pixels and have an origin of
(0, 0).
|
fb_set_pixel(x, y)
|
|
Sets the pixel at
( x, y).
The units are in pixels and have an origin of
(0, 0).
|
term_drawrect(x0, y0, x1, y1)
|
|
Draw the outline of a rectangle with the text coordinate corners of
( x0, y0)
and
( x1, y1).
The units are in character cells and have an origin of
(1, 1).
|
term_putimage(name, x0, y0, x1, y1, f)
|
|
Load the PNG file
name
and place it in the rectangle
with the text coordinate corners
( x0, y0)
and
( x1, y1)
and fill with pixel
f.
The units are in character cells and have an origin of
(1, 1).
|