Syntax
void print_left(
int x,
int y,
const char *text,
int n_height=1);
Parameters
| x | - | X coordinate (in pixels) the text is drawn at. |
| y | - | Y coordiante (in pixels) the text is drawn at. |
| text | - | The text to be drawn with this font. |
| n_height | - | Adds font height + n_height pixels to Y coordinate on new line ('\n'). |
Description
Prints text left aligned at coordinates (x,y).
Back to index
|