I introduce TurtleArt by asking the students to use the turtle to draw three different shapes: a square, a circle, and a triangle. With these three shapes student are then asked to create procedures. Procedures are a collection of moves that cause the turtle to draw. Procedures can be named, which creates a new, single block that can then be used in other procedures. For example, a square procedure can be defined as:
repeat 4 [forward 100 right 90]
Named “square,” that procedure could be called in another procedure:
repeat 36 [square right 10]
Once the students understand how to define procedures, I introduce them to variables. TurtleArt can use a block that calls for a range of random numbers or one number of the other. Here is an example of using variables to change the color the turtle is drawing.
Recursion is a little difficult for third graders to understand, so we do not linger on this project too long.
One project that the students are particularly challenged by but which they refuse to give up on is having the turtle draw their initials. This project is a particularly good opportunity for the students to collaborate with one another if they are having a difficult time figuring out how to make a letter.
The biggest project we work on is making quilt squares in TurtleArt. We create an empty square to define the quilt square. Students are then challenged to create a design that fits inside the square and does not wander out of the square. This provides the perfect opportunity to reinforce the concept of the X Y axis. Knowing the size of the square and the X Y point at which the square is started, I suggest to the students that they can “bind” their design within the square by limiting the procedure to a certain range on the X Y axis.
Once the students have created their procedures I combine the quilt squares together in Photoshop to create a class quilt, which I print on a large format printer.
It is great to see the designs that the students create and to see the students’ excitement. Programming a computer is an empowering skill. These students are being exposed to math skills that they typically would not encounter until fifth grade.
Comments