Syntax
void print_left(
int x,
int y,
float scale_x,
float scale_y,
const char *text);
Parameters
x | - | X coordinate (in pixels) the text is drawn at. |
y | - | Y coordiante (in pixels) the text is drawn at. |
scale_x | - | Scale font width scale_x times. |
scale_y | - | Scale font height scale_y times. |
text | - | The text to be drawn with this font. |
Description
Prints text left aligned at coordinates (x,y).
Back to index
|