Draws text to the screen. Displays the information specified in the first parameter on the screen in the position specified by the additional parameters. A default font will be used unless a font is set with the textFont() function and a default size will be used unless a font is set with
(char c, float x, float y)
| 12472 | * @see_external String |
| 12473 | */ |
| 12474 | public void text(char c, float x, float y) { |
| 12475 | if (recorder != null) recorder.text(c, x, y); |
| 12476 | g.text(c, x, y); |
| 12477 | } |
| 12478 | |
| 12479 | |
| 12480 | /** |
no outgoing calls
no test coverage detected