xxxxxxxxxx
29
function setup() {
createCanvas(600, 600);
}
function draw() {
background('rgb(190,251,224)');
// fill('rgb(230,180,180)');
// rect(100,200,400,300);
// fill('#F8F0A9');
// triangle(50, 200, 300, 30, 550, 200);
// fill()
fill(205,170,231,100)
circle(300,200,200);
circle(400, 300, 200);
circle(300,400,200);
circle(200,300,200);
print(mouseX + " " + mouseY);
rect()
}