79680869

Date: 2025-06-26 16:40:04
Score: 1.5
Natty:
Report link

For anyone struggling with this and tried to look it up, I got it-

the answer that was posted wasn’t exactly the right one.

What you actually needed to do was this,

; To show the turtle’s position

showturtle

; This to make the circle for reference

repeat 36

right 10

draw 5

; THIS is the important part. This is to remember the position it’s in after every VERTEX OF THE CIRCLE

REMEMBER

next

; This is the half circles being drawn

repeat 40

draw 5

right 10

GO HALF

; THIS is the second part that’s important. This is so it goes back to the next vertex position each time

GOBACK

next

end

; THIS IS THE HALF CIRCLE METHOD/SUBROUTINE

# HALF

repeat 18

right 10

draw 10

next

return

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ANON