################### # name: Richard # date: 10-3-06 # descript: graphics from Zelle Ch 5 from graphics import * def main(): win = GraphWin() center = Point(100,100) circ = circle(center, 30) circ.draw(win) # win.close() main()