< index < 2. Console emulator < 2.2 Drawing on the root console |
===================================== |
C++ : void TCODConsole::rect(int x, int y, int w, int h, bool clear, TCOD_bkgnd_flag_t flag = TCOD_BKGND_SET) C : void TCOD_console_rect(TCOD_console_t con,int x, int y, int w, int h, bool clear, TCOD_bkgnd_flag_t flag) Py : console_rect(con,x, y, w, h, clear, flag)Defines a rectangle inside a console. For each cell in the rectangle :
Parameter | Description |
---|---|
con | In the C version, the offscreen console handler or NULL for the root console. |
x,y | Coordinates of rectangle upper-left corner in the console. 0 <= x < console width 0 <= y < console height |
w,h | Size of the rectangle in the console. x <= x+w < console width y <= y+h < console height |
clear | if true, all characters inside the rectangle are set to ASCII code 32 (space). If false, only the background color is modified |
flag | This flag defines how the cell's background color is modified. See TCOD_bkgnd_flag_t. |