For my college programming class I am having to use Web Turtle. I am trying to draw a spiral like this
I know you must start with drawing a 36 sided polygon like this
SHOWTURTLE
REPEAT 36
DRAW 10
RIGHT 10
NEXT
But after that I am lost, I tried this:
SHOWTURTLE
REPEAT 36
DRAW 10
RIGHT 10
GO HALF
NEXT
END
# HALF
REPEAT 18
DRAW 10
RIGHT 10
NEXT
RETURN
This results in just a circle over my 36 sided polygon however. I know what I need to do but I cant put into the code. I need to draw a half circle at every vertex of the 36 sided polygon. I don't know why this coming harder to me then JavaScript did! Any tips would be awesome!