# DemoGraphics.py """ Draws a design with squares and a design with rings.""" from simpleGraphics import * # First Figure MakeWindow(6,bgcolor=DARKGRAY,labels=False) DrawRect(0,0,6,6,color=CYAN,stroke=5,rotate=0) # Add more squares... # Second Figure MakeWindow(10,bgcolor=DARKGRAY,labels=False) # Rings DrawDisk(0,1,2,stroke=10) # Add more rings... ShowWindow()