One step is now one pixel, so the numbers you type in to the fd or bk commands need to be bigger.
setpos [0 0] takes the place of ct and sends the turtle to the middle.
seth 45 rotates the turtle to a bearing of 045°.
setpencolor "red takes the place of pc.
Draws an arc centred on the turtle, starting at the turtle's
heading, without moving it.
Example: arc 180 100
setpencolor "yellow fill floods the area around the turtle with yellow.
cs pu setpos [0 -150] repeat 3 [pd seth 300 arc 60 100 fd 100 pu bk 100 seth 0 fd 100] pd
Here is every command this version of Logo understands. The commands marked Level 2 and Level 3 work at Level 1 too, once you are ready for them. Remember that one step is one pixel from Level 2 onwards.
Level 1 - Basic use of Logo commands to draw shapes
Level 2 - Some more Logo commands to draw more complex shapes
Level 3 - Use Logo procedures to draw more complex diagrams
More on Angles including lesson Starters, visual aids and investigations.
New in this version: the computer looks at your drawing and decides whether it answers the challenge. Judging a picture is a hard thing for software to do, so it will not always get it right. If you are sure your drawing answers the challenge but no star appears, show it to your teacher. Teachers with a Transum subscription can award the Logo trophy from their dashboard.
Every command you have typed this session. Click one to put it back in the command box.
David Eisenstat, US
See how complex designs can be produced with only a small amount of code. This competition winner is called Dahlia:
repeat 8 [rt 45 repeat 6 [repeat 90 [fd 2 rt 2] rt 90]]
The 6 can be replaced with 1 to 7 for other flowers.