xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
//background(120, 5);
stroke(random(255),0,random(30, 60));
//fill(255,0,30,20);
//fill(255,0,255);
rectMode(CENTER);
translate(mouseX,mouseY);
rotate( random(PI));
//line(0,0,200,200);
//ellipse(0,0,200,200);
rect(0,0,random(100),100)
}