Function versions of pizza, polygon, and star. Place all of your function definitions in one Python source file, pizzaPolyStar.py.
def main():
win = GraphWin("", 400, 350)
pizza(win, Point(50, 50), 40, 10)
pizza(win, Point(150, 50), 45, 3)
star(win, Point(250, 50), 35, 7, 3)
polygon(win, Point(100, 200), 75, 7)
star(win, Point(300, 200), 100, 17, 5)
win.getMouse()
main()
You should be able to create some interesting patterns by calling your function with various parameters (in a 1000 by 1000 window). You might try (one at a time) the examples are below, along with output from the first one"
Submit a file containing your Python code for the circleOfCircles function to the circleOfCircles drop box in the Homework 7 folder on ANGEL.