[CODE lang="java" title="iterative form"]private static void drawPatternIterative(int width) {
int length = width/64;
// boolean c = false;
boolean c = true;
for ( int x=0; x<6; x++){
if(c){
StdDraw.setPenColor(StdDraw.BLUE);
c=false;
}else {
StdDraw.setPenColor(StdDraw.ORANGE);
c=true;
}
for(int y = 1; y< width/length; y++){
for(int z=1; z<width/length;z++){
StdDraw.filledRectangle(-256+length*z,-256+length*y,length,length*0.05);
StdDraw.filledRectangle(-256+length*z,-256+length*y,length*0.05, length);
}
}
length*=2;
}
}[/CODE]
also das unten am bild ist die angabe für die iterative methode
kann mir wer das auch noch kurz erklären wäre echt nett:/
int length = width/64;
// boolean c = false;
boolean c = true;
for ( int x=0; x<6; x++){
if(c){
StdDraw.setPenColor(StdDraw.BLUE);
c=false;
}else {
StdDraw.setPenColor(StdDraw.ORANGE);
c=true;
}
for(int y = 1; y< width/length; y++){
for(int z=1; z<width/length;z++){
StdDraw.filledRectangle(-256+length*z,-256+length*y,length,length*0.05);
StdDraw.filledRectangle(-256+length*z,-256+length*y,length*0.05, length);
}
}
length*=2;
}
}[/CODE]
also das unten am bild ist die angabe für die iterative methode
kann mir wer das auch noch kurz erklären wäre echt nett:/