prochessing
prochessing
prochessing
4 posts
processing, everyday
Don't wanna be here? Send us removal request.
prochessing · 7 years ago
Video
tumblr
day 4
void setup() {  size(640, 640);  background(255);  //frameRate(2); }
void draw() {  fill(50);  noStroke();  ellipse(mouseX, mouseY, 80, 80);  stroke(0);  line(80, 30, mouseX, mouseY); }
void mousePressed() { background(255); }
0 notes
prochessing · 7 years ago
Video
tumblr
day 3
void setup() {  size(640, 640);  background(255); }
void draw() {  //fill(random(50),random(50),random(50));  fill(0);  noStroke();  ellipse(random(width), random(height), 15, 15);  saveFrame("trois-######.png"); }
0 notes
prochessing · 7 years ago
Photo
Tumblr media
day 2
void setup() {  size(640, 640, P3D); }
void draw() {  background(255);  fill(0);  noStroke();  ellipse(width/2, height/2, 160, 160);  save("deux.png"); }
0 notes
prochessing · 7 years ago
Photo
Tumblr media
day 1
0 notes