xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
// R G B
background(0, 155, 100);
textSize(50);
text(mouseX + " " + mouseY, mouseX, mouseY)
//fill();
//stroke();
ellipse(200, 200, 200, 200);
}