circle(30, 30, 20);
circle(x, y, d)
x Number: x-coordinate of the centre of the circle.
y Number: y-coordinate of the centre of the circle.
d Number: diameter of the circle.
function setup() {
createCanvas(200,200,WEBGL);
}
function draw() {
background(220);
circle(100)
}
// done u made a 3rd dimensional circle