Interaktives Plakat “Typografie” I.Version

JanaSuelzner

Die I.Version zum Thema “Feiningers Zitat – Typografie”

Eine Zusammenarbeit mit Isabell Pullwitt.

Der Grundcode stammt von: Pablo Andres Carrasco Toledo

float a, b; 
 
void setup(){ 
  a = 5; ///für kreis formation zuständig
  b = 100; ///für verdopplung zuständig
  size(640,480); 
  smooth(); 
} 
void draw(){
  background(250);
  stroke(0); 
 
  for(float y =a; y <= width-2*a; y += b/2){ 
    for(float x = a+10; x <= height-a/2; x += 1.5*b){ 
 
    float f; 
      f = dist(mouseX, mouseY, x, y); 
      float diam; 
      diam = map(f, f, width, height, 14); 
 
        translate(mouseX*2,mouseY*2); 
        rotate(5); 
 
        fill(60,140,50,90); ///grün
        rectMode(CENTER);  
        rect(x,f,70,50); 
 
        fill(0,84,142,60);///blau 
        rectMode(CENTER); 
        rect(f,y,150,110); 
 
        fill(27,49,111,70);///dunkel blau 
        rectMode(CENTER); 
        rect(f,f,80,80);
 
        fill(166,222,120,80);///helles grün 
        rectMode(CENTER); 
        rect(f,mouseY,40,40); 
    }   
    } 
  }