MCPcopy Create free account
hub / github.com/benfry/processing4 / text

Method text

core/src/processing/core/PApplet.java:12474–12477  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 /**

Callers 2

drawImplMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected