xxxxxxxxxx
function setup() {
createCanvas(1000, 1000);
background(100, 100, 100);
}
function draw() {
if(mouseIsPressed) {
//background(170,2);
//stroke(100);
fill(random(100), 100, 100);
translate (mouseX, mouseY);
ellipse (30, 30, 20, 30);
}
}