xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
fill(309,28,10,12);
rectMode(CENTER);
translate(mouseX, mouseY);
rotate( random(PI));
rect(500,589,589,478);
rotate( radians(random(180)) );
rect(30, 20, 55, 55, 20);
}