File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/org/teachingkidsprogramming/section05recursion Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ public static void main(String[] args)
1919 //
2020 // ------------- Recipe for drawTriangle --#4.2
2121 // Do the following 3 times --#3
22- // Move the tortoise the length of a line --#1.1
22+ // Move the tortoise the current length ( of the line) --#1.1
2323 // Turn the tortoise 1/3rd of 360 degrees --#2
2424 // Repeat
2525 // ------------- End of drawTriangle recipe --#4.3
2626 //
2727 // Turn the tortoise 1/6th of 360 degrees to the right --#7
28- // Increase the length of the line by the current zoom --#8.1
28+ // Increase the current length ( of the line) by the current zoom --#8.1
2929 // Repeat --#5.2
30- // ------------- End of weaveOneLayer recipe --#9.2
30+ // ------------- End of weaveOneLayer recipe --#9.3
3131 //
32- // Change the zoom so it is multiplied by 1.3 --#11
32+ // Change the current zoom so it is multiplied by 1.3 --#11
3333 // Repeat
3434 }
3535}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public void questions1To4()
2222 // Question 3
2323 // setNinety (recipe below)
2424 // ------------- Recipe for setNinety
25- // set the current turn angle to 90, HINT: Use angles
25+ // set the current turn angle to 90, HINT: Use angles.put(key,value);
2626 // ------------- End of setNinety recipe
2727 //
2828 // Question 4
You can’t perform that action at this time.
0 commit comments