LOGO challenge 9 - overlapping polygons
This LOGO challenge starts by looking at 10-sided polygons then generalises the findings to any polygon, putting particular emphasis on external angles
Problem
TO POLY :N
REPEAT :N [ FD 40 RT 360/:N]
END
It was while experimenting with the procedure above that the three overlapping motifs below were produced. In each case the motif is a regular dodecagon.

Image
![]() | Why not experiment with different values of N? To what extent will sets of Ngons overlap and produce differing tiling patterns? |
Teachers' Resources
What is the RT 360/:N doing in the procedure?
Try some substitution for different values of N and see how this helps you to draw different polygons.
Try N = 3. Why isn't the answer 60, which is the size of the angle of an equilateral triangle?
N.B. As you walk around any polygon what is the total angle you will always turn through no matter what the size of the polygon?
360 degrees - which is the sum of the external, not the interal angles.