circle

v0.1.7
circle(x, y, d);

Draw a circle on the screen.

Arguments

xThe x position of the circle
yThe y position of the circle
dThe diameter of the circle

function setup()
  createWindow(200, 200);
end

function draw()
  background('purple');
 
  circle(100, 100, 32);
end

Output

See circle in shapes.h