MCPcopy Index your code
hub / github.com/processing/processing / point

Method point

core/src/processing/core/PGraphics.java:2417–2421  ·  view source on GitHub ↗

( begin auto-generated from point.xml ) 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

(float x, float y)

Source from the content-addressed store, hash-verified

2415 * @see PGraphics#stroke(int)
2416 */
2417 public void point(float x, float y) {
2418 beginShape(POINTS);
2419 vertex(x, y);
2420 endShape();
2421 }
2422
2423 /**
2424 * @param z z-coordinate of the point

Callers

nothing calls this directly

Calls 3

beginShapeMethod · 0.95
vertexMethod · 0.95
endShapeMethod · 0.95

Tested by

no test coverage detected