Wednesday, April 04, 2012

Forever Raining - White background

//Made by Reuben Williamson.
//Follow @SubtleMonster!
void setup(){
smooth(); 
//Makes the umberellas smooth
background(255,255,255);
size(800,300);
frameRate(20);
//slows the frame rate for more inpact.
}
//All this next bit is  about the actual umberellas.
void draw() {
int posx = int(random(0,width));
int posy = int(random(0,height));
float radius = random(10,30);
//these are the positions which are used 
//later to draw the umberellas
fill(random(1,500),random(1,500),random(1,500),30);
strokeWeight(random(0,2));
//here is the code for the circles 
//around the star shapes.
ellipse(posx,posy,radius*4,radius*4);
ellipse(posx,posy,radius*3,radius*3);
ellipse(posx,posy,radius*2.5,radius*2.5);
//this is the code for the the stars 
//in the center of the circles.
for(float i = 0.0; i < 2.0*PI; i+=0.5-radius/200){

line(posx,posy,posx+sin(i)*radius,posy+cos(i)*radius);
}  
}
//the end of the code.

info info

submitted by: reubenwilliamson
views: 4380
As the world starts, there is blackness. Then people appear with umberellas to protect them from the rain. As the world fills up with us, we start to live ontop of each other. We all slowly drift into the haze as there is so many people similar to us. Individuality is there, but it is hard to see with so much of it. Only some get noticed, but they quickly get replaced. We are all there, all noticable and all different from the other, but we all sink away. SM

treeThis sketch has a parent
Tags:

comments comment

loading loading...

 

Add a comment: