( 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)
| 11983 | * @see PGraphics#stroke(int) |
| 11984 | */ |
| 11985 | public void point(float x, float y) { |
| 11986 | if (recorder != null) recorder.point(x, y); |
| 11987 | g.point(x, y); |
| 11988 | } |
| 11989 | |
| 11990 | |
| 11991 | /** |