Draw a 360 sided polygon

Challenge Level: Growing experience

Learning outcomes

Students will be able to:

Requirement:

Write a program that draws a 360-gon, a polygon with 360 sides of length 1 step, turing one degree at each point. Note: The sides are so small that this will look like a circle, but a 360 sided polygon is geometrically different from a circle (i.e. circle has infinite number of sides). Still, in the following challenges we will call it a circle.

Testing examples:

There are no testing examples for this challenge.

Languages

Scratch

What it should look like

Click on the green flag to see the expected output of your program.

Recommended blocks
when green flag clicked
clear

pen down

pen up
go to x: (0) y: (0)

move (1) steps

turn cw (1) degrees
repeat (360)
end

Show Scratch solution