xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw() {
background(0,1)
{
if(mouseIsPressed)
rectMode(CENTER)
translate(mouseX,mouseY)
if(mouseIsPressed)
rect(random(5),random(25),random(50),20)
stroke(255,80)
noFill()
}
{
if(mouseIsPressed)
ellipse(0,0,100,100)
stroke(220,10,60)}
}