Apr 19, 2011
Schleife II
Eine verschachtelte For-Schleife:
void setup(){
size(200, 200);
smooth();
}
void draw(){
background(0);
for(int i=0; i < 10; i++){
//jede Variable darf nur einmal im script genutzt werden, deshalb hier j statt i
for(int j=0; j < 10; j++){
fill(255);
ellipse(i*10, j*10, 5, 5);
}
}
}