Name

point

Examples
# point 1 https://processing.org/reference/point_.html

noSmooth()
point(30, 20)
point(85, 20)
point(85, 75)
point(30, 75)
# point 2 https://processing.org/reference/point_.html

settings <- function() {
    size(100, 100, P3D)
}

draw <- function() {
    noSmooth()
    point(30, 20, -50)
    point(85, 20, -50)
    point(85, 75, -50)
    point(30, 75, -50)
}
Description 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 parameter in combination with size() as shown in the above example.
Syntax
point(x, y)
point(x, y, z)
Parameters
xfloat: x-coordinate of the point
yfloat: y-coordinate of the point
zfloat: z-coordinate of the point
Creative Commons License