ART CODE 2

 art code 2




void setup() {

  size(1280,720);


}


void draw () {

 background(50);

 fill(255);

 noStroke();

 float wave = sin(radians(frameCount));

 ellipse (width/2 + wave * 200, height/2, 200, 200);

 

}


Comments

Popular posts from this blog

video loops, art code 9

video loops, art code 6

art code 12