Intro to Processing Code 1

A Reproduction of Proun 1

proun-1

 

 

codes:
size(700,700);
background (#F5D5AB,80);

//backrgound round guy
noStroke();
fill (#E5CDB7);
ellipse (350,350,600,600);

//16xcirclex16
stroke(0);
strokeWeight (3);
noFill();
 for(int i=0; i<18; i++){
ellipse(width*0.6+i, height*0.4-i*2, i*14, i*14);
}


//slanted rectangle
noStroke();
fill (#272121);
quad (290,390,215,510,275,475,350,350);

//shadow of rec
noStroke();
fill(#BCAAA4);
quad (350,350,275,475,280,480,355,355);

//coloredlines
stroke(#F7793E);
strokeWeight(5);
line (217,508,177,445);
line(177,445,340,340);

stroke(#191893);
strokeWeight(5);
line(217,508,275,475);
line(275,475,218,385);
line(218,385,327,312);

//smaller rectangle
noStroke();
fill(#ADA29D);
quad(215,386,250,320,245,315,210,380);

noStroke();
fill (#272121);
quad(210,380,245,315,217,340,184,400);

 

 

This entry was posted in 472 - Cartography. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *