MCPcopy Index your code
hub / github.com/benfry/processing4 / point

Method point

core/src/processing/core/PApplet.java:11282–11285  ·  view source on GitHub ↗

Draws a point, a coordinate in space at the dimension of one pixel. The first parameter is the horizontal value for the point, the second value is the vertical value for the point, and the optional third value is the depth value. Drawing this shape in 3D with the z parameter requires the P3D

(float x, float y)

Source from the content-addressed store, hash-verified

11280 * @see PGraphics#stroke(int)
11281 */
11282 public void point(float x, float y) {
11283 if (recorder != null) recorder.point(x, y);
11284 g.point(x, y);
11285 }
11286
11287
11288 /**

Callers 1

drawPrimitiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected