Monthly Archives: September 2016

Intro to Processing Code 2

Alternative “Remix” of Proun 1  – A Flashy Pink Modern Jam Neon Proun……   Codes: void setup(){ size(600,600); background (0); } void draw(){   //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(4); line (217,508,177,445); line(177,445,285,390); … Continue reading

Posted in 472 - Cartography | Leave a comment

Intro to Processing Code 1

A Reproduction of 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); … Continue reading

Posted in 472 - Cartography | Leave a comment