Turtle Graphics - Turtle Animation
[Index] [<< Previous section: Adding Shadow] [Next section: Drawing Text >>]
wait milliseconds
- Description: waits a number of
milliseconds
before executing the next command.- Test the following programs to better understand the
wait
command.- Example 1:
circle 100
wait 1000
fd 120
circle 50- Example 2:
repeat 10 [
circle random 40
wait 500
print repcount
cs
] - Test the following programs to better understand the
Animation is the process of creating a continuous motion and shape change illusion by means of the rapid display of a sequence of static images that minimally differ from each other.
[Index] [<< Previous section: Adding Shadow] [Next section: Drawing Text >>]