No edit summary  | 
				m (moved IFD:GenerativeBauhaus/Melissa to IFD:GenerativeBauhaus WS2012/Melissa: new term)  | 
				||
| (4 intermediate revisions by one other user not shown) | |||
| Line 166: | Line 166: | ||
Tusche auf Papier  | Tusche auf Papier  | ||
==Farbfetisch==  | |||
'''Kontraststudie'''  | |||
Farbe-an-sich  | |||
[[File:Farbe-an-sich.png|300px]]  | |||
Hell-Dunkel  | |||
[[File:Hell-Dunkel.png|300px]]  | |||
Kalt-Warm  | |||
[[File:Kalt-Warm.png|300px]]  | |||
Komplementär  | |||
[[File:Komplementär.png|300px]]  | |||
Simultan  | |||
[[File:Simultan.png|300px]]  | |||
Qualität  | |||
[[File:Qualität.png|300px]]  | |||
Quantität  | |||
[[File:Quantität.png|300px]]  | |||
==Typische Typographie==  | |||
'''Manche Schriften ordnet man automatisch in bestimmte Kategorien ein. Sie sind "typisch" für etwas oder jemanden...'''  | |||
[[File:DeRo.png|300px]]  | |||
[[File:KüDi.png|300px]]  | |||
[[File:WeiSchu.png|300px]]  | |||
[[File:PriGro.png|300px]]  | |||
[[File:ALLE.png|300px]]  | |||
[[Category:Bauhaus-Vorkurs]]  | [[Category:Bauhaus-Vorkurs]]  | ||
Latest revision as of 11:28, 17 July 2013
Punkt
'Punkt' aus Punkten.
Linie
'Linie' aus Linien.
Von der Figur..
..zur Linie.
void setup() {
  size(800, 600);
}
void draw() {
  background(255);
  
  if(mousePressed == true) {
  fill(255);
  } else {
    fill(0);
  }
  beginShape();
  curveVertex(400,400);
  curveVertex(400,400);
  curveVertex(410,380);
  curveVertex(400,360);
  curveVertex(390,380);  
  curveVertex(410,390);
  curveVertex(420,390);
  curveVertex(420,380);
  curveVertex(422,390);
  curveVertex(440,380);
  curveVertex(442,390);
  curveVertex(443,380);
  curveVertex(446,380);
  curveVertex(447,390);
  curveVertex(452,390);
  curveVertex(452,380);
  curveVertex(454,390);
  curveVertex(464,385);
  curveVertex(460,380);
  curveVertex(458,385);
  curveVertex(460,390);
  curveVertex(470,400);
  curveVertex(475,390);
  curveVertex(475,390);
  point(420,360);
  point(452,360);
  endShape();
}Form
'Form' aus Formen.
void setup () {
  
  size (800,600);
  background (255);
  
}
int value = 0;
int counter = 0;
void draw () {
  
  fill (0);
  
  if (counter >= 1) {
    triangle (40,250,50,10,70,550);
    triangle (48,18,120,30,140,18);
    triangle (48,80,120,92,140,80);
    }
  
  if (counter >= 2) {
    ellipse (200,250,200,200);
    }
    
    fill (255);
  if (counter >= 3) {
    ellipse (220,270,130,70);
    }
    
    fill (0);
  if (counter >= 4) {
    rect (350,250,25,200);
    }
    
  if (counter >= 5) {
    triangle (370,265,380,230,450,265);
    }
    
  if (counter >= 6) {
    rect (480,200,200,200);
    }
    
    fill (255);
  if (counter >= 7) {
    rect (530,260,30,180);
    rect (600,260,30,180);
    rect (530,200,150,20);
    }
    
  }
void mouseClicked() {
  counter = counter +1;
  if (value==0) {
    value = 255;
  }
}Raum
Die Schattenlosen
Räumliche Schattenlosigkeit oder schattenlose Räumlichkeit?
Frei nach Phil Metzger.
Rastergedanken
Denkraster - Rasterdenken - Gedankenraster
Farbe
Farbkreisstudie nach Inspiration durch Bella Ullmann-Broner und ihren Farbkreisstudien nach Ostwald von 1931
Tusche auf Papier
Farbfetisch
Kontraststudie
Farbe-an-sich
Hell-Dunkel
Kalt-Warm
Komplementär
Simultan
Qualität
Quantität
Typische Typographie
Manche Schriften ordnet man automatisch in bestimmte Kategorien ein. Sie sind "typisch" für etwas oder jemanden...



