@@ -15,27 +15,24 @@ public static void main(String[] args)
1515 }
1616 private void showSomeTurtles ()
1717 {
18- // Call the makeSpeedyTurtle method --#2
19- // Call the makeSlowTurtle method --#4
20- // Call the makeCrazyTurtle method --#6
18+ // makeSpeedyTurtle (recipe below) --#2.0
19+ // ------------- Recipe for makeSpeedyTurtle --#1.0
20+ // Create a new speedyTurtle instance
21+ // Add your speedyTurtle to your MultiTurtleWindow
22+ // Have your speedyTurtle draw a triangle with 100 pixel sides
23+ // Set the speed of your speedyTurtle to the fastest possible
24+ // ------------- End of makeSpeedyTurtle --#1.1
25+ // makeSlowTurtle (recipe below) --#4.0
26+ // ------------- Recipe for makeSlowTurtle --#3.0
27+ // Create a new slowTurtle instance
28+ // Add your slowTurtle to your MultiTurtleWindow
29+ // Have your slowTurtle draw a upside down triangle with 50 pixel sides
30+ // ------------- End of makeSlowTurtle --#2.2
31+ // makeCrazyTurtle (recipe below) --#6.0
32+ // ------------- Recipe for makeCrazyTurtle --#5.1
33+ // Create a new crazyTurtle instance
34+ // Add your crazyTurtle to your MultiTurtleWindow
35+ // Have your crazyTurtle draw a 55 pixel long lightning bolt
36+ // ------------- End of makeCrazyTurtle --#5.2
2137 }
22- //
23- // Create the makeSpeedyTurtle method --#1.0
24- // Create a new speedyTurtle instance
25- // Set the speed of your speedyTurtle to the fastest possible
26- // Add your speedyTurtle to your MultiTurtleWindow
27- // Have your speedyTurtle draw a triangle with 100 pixel sides
28- // End of makeSpeedyTurtle method --#1.1
29- //
30- // Create the makeSlowTurtle method --#3.0
31- // Create a new slowTurtle instance
32- // Add your slowTurtle to your MultiTurtleWindow
33- // Have your slowTurtle draw a upside down triangle with 50 pixel sides
34- // End of makeSlowTurtle method --#3.1
35- //
36- // Create the makeCrazyTurtle method --#5.0
37- // Create a new crazyTurtle instance
38- // Add your crazyTurtle to your MultiTurtleWindow
39- // Have your crazyTurtle draw a 55 pixel long lightning bolt
40- // End of makeCrazyTurtle method --#5.1
4138}
0 commit comments