Nov 282017
- Think of a simple picture with repeated elements, see here for examples. Use LOGO to draw it!
- You could sketch it in j2e5 first
Success steps
- Use several different elements
- Use repeat
- Use setxy to move around the canvas
- Keep you code tidy so it is easy to read
- Be prepared to learn a new command – look on the blog for ideas
- ** Use procedures for repeated elements – see this blog post
- ** Use variables to make thinks different sizes
- to square :size
- repeat [fd :size rt 90]
- end
- Then type square 50 in your code
- to square :size