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