point()Shape2D PrimitivesWeb & Applicationpoint_.gif
point(30, 20);
point(85, 20);
point(85, 75);
point(30, 75);
A point is a coordinate in space. In Processing, points have a 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.
point(x1, y1);
point(x1, y1, z1);
int or float: x-coordinate of the pointint or float: y-coordinate of the pointint or float: z-coordinate of the pointNone
beginShape()
1.0FunctionCore