57
edits
| 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?== | ||
edits