Goal: Control a turtle´s speed with division.
Vocabulary: / (division sign)

Notes - In the turtle's dialog box, type fd 1 / 10. This means, "Move forward one-tenth of a tiny turtle step." The / (forward slash) is the division sign. Be sure to put a space before and after the / . Set the instruction to many times.
- Now when we click on the turtle, it will move forward one-tenth of a tiny step, over and over again. These steps are so tiny that we can't really see every single step. But it means that the turtle will move more slowly than he does when we tell him fd 1, many times. It will take him ten times as long to travel across the page, because it will take him ten times as long to move forward each whole tiny turtle step.
- Write a start procedure as shown above.
The command t1, clickon is the same as clicking directly on turtle t1 to start running its instructions.
- Add a start button to activate the start procedure.
What If?
What happens if you try dividing by a different number? ( Try fd 1 / 5 or fd 1 / 2 or fd 1 / 20.)
Challenge
How can you make the turtle move in a tiny circle or a big circle? Can you make it go in a circle around the pond?
|