xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw() {
//background(0);
noFill();
stroke(255,160,20,30);
rectMode(CORNER);
translate(900, 0);
//translate(random(0, 200), 0);
rotate( random ( 0,90) );
//rotate( radians( random(0, 45) ) );
rect(random(100,500), 0, 200, 200);
translate(900,100);
ellipse(random(10,200),100,random(80,150),random(10,200));
}