A Short introduction to using Logo. This is the first in a twelve part series.
Can you use LOGO to create this star pattern made from squares. Only basic LOGO knowledge needed.
Using LOGO, can you construct elegant procedures that will draw this family of 'floor coverings'?
First Forward Into Logo Previous: FF7
You might like to learn some more Logo by going to Muggles, Logo and Gradients where you will use Logo to throw light on a very puzzling problem called Muggles Magic . Consider the following procedure: TO PATTERN :SIZE REPEAT 5 [FORWARD :SIZE RT 144] END
Or experiment with different numbers for yourself and see what patterns you can produce. Are you feeling happier with the idea of a variable? If so why not explore further this idea of using a variable in those procedures you have met previously. TO SQUARE :SIZE REPEAT 4 [ FD :SIZE RT 90] END TO HEXAGON :S REPEAT 6 [ FD :S RT 60] END TO DODECA :S REPEAT 12 [BK :S LT 30] END
Next: FF9