ART CODE 2 Get link Facebook X Pinterest Email Other Apps April 18, 2021 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); } Get link Facebook X Pinterest Email Other Apps Comments
ART CODE 5 April 19, 2021 int x = 0; int y = 0; void setup(){ size(1280, 720); background (0); } void draw(){ rectMode(CENTER); translate(width/2,height/2); rotate(radians(frameCount)); rect(x,y, 10,700); delay(40); for(int i = 0; i < 20; i++) { println(i); fill(random(255)); rect(radians(width),random(height),i*1, i*15); } } Read more
video loops, art code 6 April 19, 2021 int x = -10; int y = 10; void setup(){ size(1280, 720); background (0); } void draw(){ translate(width/2,height/2); for(int i = -160; i < 3; i++) { println(i); fill(random(255)); rect(radians(width),(height),i*10, i*6); rotate(radians(frameCount)); } } Read more
ART CODE 4 April 18, 2021 void setup() { size(1280,720); frameRate(20); } void draw () { background(#aaaaaa); fill(0); noStroke(); for(int i = 1; i < 100; i++) { println(i); fill(random(255)); ellipse(random (width),random(height),i*1, i*1); } } Read more
Comments
Post a Comment