CS21 Lab 11: Bug Example 3

Write a separate program that imports the bug class and uses it to draw the following picture.

For this one, the cloak and wand should not be too difficult.

The hardest part is getting the circle right. A circle is really just a lot of short "forward" and "turn" calls. If you want the circle made of N forwards and turns, then each turn should be 360/N degrees, and each forward should be the circumference (2*pi*r) divided by N.