Turtle Tuesdays Challenges for January 2025
This month we are exploring the DOT
, SETWIDTH
, and WIDTH
commands.
Use (DOT)
to place a dot at the turtle’s location.
Use SETWIDTH
or SETW
with a number from 1 to 999 to draw with a different width pen.
Use WIDTH
to find out the current penwidth.
Challenge No. 119 - January 7, 2025
for Logo users
Can you draw this design?
Challenge No. 120 - January 14, 2025
for Logo users
Can you draw this design?
Challenge No. 121 - January 21, 2025
for Logo users
Let’s add some color in this design with lots of squares!
Challenge No. 122 - January 28, 2025
for Logo users
Can you write a procedure that can create all these different designs? Just 4 short lines will do it!
Our solution uses these commands: (DOT)
, SETWIDTH
, RANDOM
, FD
, RT
, PU
, PD
, SETPC
, and REPEAT
.