Create A Simple Turtle Graphics Program

Project #1

Create a simple turtle graphics program. Below are a possible layout and turtle design.

Test by drawing shapes

Project #2

Create a simple game. Create a maze(s) the user must program a path through the maze, or any other game you can think of that requires drawing lines.

Possible Design Hint

Layers can determine what will be displayed on top of other element. For example, the turtle sprite will always be displayed on top of all other layers.

LayerUse/Description
Layer3top most layer
used for the turtle sprite
Layer2used for the lines drawn by the turtle
Layer1used for the grid
Layer0bottom most layer
used for background images,
mazes, background color, ...

Note: Layers are independent and can be displayed or removed without effecting the other layers.

Possible Layout Example

Little Turtle is designed to build a command sequence a few commands at a time.

  1. Enter one or two commands.
  2. Run the commands.
  3. Correct the commands or add new commands.
  4. Reset the "Drawing Area".
  5. Got to step 2.

Possible Turtle Example (25x31 pixels)

Draw A Spiral