# Jay Summet # CS 1301 - Instructor # May 11th, 2013 # # Collaboration Statement: I worked on this program alone. #Import the Calico Graphics library (all lines starting with "#" marks are comments) from Graphics import * #Create a window myWin = Window("My Window", 300,300) #Create a point that will act as the center of both of our circles. myPoint = Point(150,150) #Create circle 1 (50 pixel radius) using myPoint as the center, and draw it. myCircle = Circle(myPoint, 25) myCircle.draw(myWin) #Create a second circle, with the same center point, but make this #one smaller and have a red fill. A2ndCircle = Circle(myPoint, 10) redColor = Color(255,0,0) A2ndCircle.color = redColor A2ndCircle.draw(myWin)