xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background('rgb(20,50,60)');
//background(0);
}
function draw() {
noFill();
stroke(255, 5);
translate(width/2, height/2);
rotate(sin( millis()/1000 ) *100);
translate(100, 0);
rectMode(CENTER);
//stroke('rgb(20,50,60)')
rect(0, 0, 25, 25);
rect(0, 0, 50, 50);
rect(0, 0, 100, 100);
rect(0, 0, 150, 150);
rect(0, 0, 200, 200);
ellipse(180,0,100,100);
ellipse(280,0,100,100);
ellipse(430,0,200,200);
}