float angle;
void setup(){
size(800,800);
}
void draw(){
background(0);
angle += 0.001;
strokeWeight(4);
stroke(0);
translate(width/2,height/2);
for (int i=0; i<80; i++){
rotate(sin(angle));
scale(0.95);
rectMode(CENTER);
fill(255,70);
rect(0,0,600,600);
fill(255,50);
ellipse(0, 0, 600, 200);
}
}