circle(x, y, d);
Draw a circle on the screen.
Arguments
x
The x position of the circley
The y position of the circled
The diameter of the circlefunction setup()
createWindow(200, 200);
end
function draw()
background('purple');
circle(100, 100, 32);
end
Output