Interaktives Plakat “Malstil” I.Version

JanaSuelzner

Die I.Version zum Thema “Feiningers Malstil”.

Eine Zusammenarbeit mit Isabell Pullwitt.

Der Grundcode stammt von: Camila Valenzuela

float a;  
void setup(){
  a = 75;
  size(640,480);
  fill(0);
  stroke(a);
}
  void draw(){
  stroke(255,40);
  background(255,0);
    for (float y = a/1; y <= height; y += a){
    for (float x = a/1; x <= width; x += a){
      float d;
      d= sqrt((mouseX-x)*(mouseX-x)+(mouseY-y)*(mouseY-y));
      rect (x, y, d/a, d/a);
      fill(100,160,180,50);
      triangle(x, d, x, y, d, y);
        }
    }
  }