from cs1graphics import * paper = Canvas(600,600) path = Path() for x in range(600): y = 0.01 * (x-300)**2 path.addPoint(Point(x,y)) paper.add(path)