ellipse(x, y, w, h);
Draw an ellipse on the screen.
Arguments
x
The x position of the ellipsey
The y position of the ellipsew
The width diameter of the ellipseh
The height diameter of the ellipsefunction setup()
createWindow(200, 200);
end
function draw()
background('purple');
ellipse(100, 100, 64, 32);
end
Output