xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
fill (mouseX/4, 0, 250);
translate (mouseX,mouseY);
//background (255,500);
rectMode (CENTER);
noStroke ();
rect (0,0,70,70);
fill (mouseX/4, 0, 230);
//rotate (random(PI));
rotate (radians (random(30,60)));
//rotate (radians(30));
rect (0,0,40,70);
//rotate (radians(45));
rect (0,0,70,40);
//rotate (radians(60));
rect (0,70,70);
}