No edit summary |
(→Format) |
||
Line 1: | Line 1: | ||
==Farbenfroh== | |||
```RGB``` | |||
[[File:RGB-processing.jpg]] | |||
void setup() | |||
{ | |||
size(255,255); | |||
smooth(); | |||
} | |||
void draw() | |||
{ | |||
for(int i = 0; i <= 255; i++){ | |||
for(int n = 0; n <= 255; n++){ | |||
stroke(i,n,0); | |||
point(i,n); | |||
} | |||
} | |||
} | |||
==Raster== | |||
Kommt noch :)) | |||
==Format== | ==Format== | ||
Line 17: | Line 46: | ||
[[File:schreg.png]] | [[File:schreg.png]] | ||
==Punk, Linie, Form, Figur. Was bin ich?== | ==Punk, Linie, Form, Figur. Was bin ich?== |
Revision as of 13:01, 28 November 2012
Farbenfroh
```RGB```
void setup()
{
size(255,255); smooth();
}
void draw() {
for(int i = 0; i <= 255; i++){ for(int n = 0; n <= 255; n++){ stroke(i,n,0); point(i,n); } }
}
Raster
Kommt noch :))
Format
Ganz schön hoch.
Ganz schön quer.
Ganz schön eng.
Ganz schön schre(ä)g.
Punk, Linie, Form, Figur. Was bin ich?
Ausgeglichen
Half.
Siehst du mich?
Linien&Punkte
Zu dick?
Bin ich da?
Ich verschwinde.
Gefühle:
Liebe:
Sketch:
size(600, 400);
background(250);
fill(1);
ellipse(200, height/2, 300, 300);
fill(1);
ellipse(400, height/2, 300, 300);
Freundschaft:
Sketch:
size(600, 400);
background(250);
fill(1);
ellipse(150, height/2, 300, 300);
fill(1);
ellipse(450, height/2, 300, 300);
Hass:
Sketch:
size(600, 400);
background(250);
fill(1);
ellipse(10, 10, 10, 10);
fill(1);
ellipse(590, 390, 10, 10);
Gleichgültigkeit:
Sketch:
size(600, 400);
background(250);
fill(1);
ellipse(10, 390, 10, 10);
fill(1);
ellipse(590, 390, 10, 10);