#############################
# hw4.py
#
# Your name:
# Your andrew id:
#################################################

from cmu_graphics import*
import math
import string


#################################################
# Functions (for you to write)
#################################################


#### drawUnitedStatesFlag ####

def drawUnitedStatesFlag(width=950, height=500):
    return None

#### drawBarChart ####

def drawBarChart(width, height, data):
    return None

#### drawNiceRobot ####

def drawNiceRobot(width, height):
    return None

#################################################
# Test Functions
#################################################

def redrawAll(app):
    # uncomment one of them at a time
    drawUnitedStatesFlag()
    #drawBarChart(app.width, app.height, "yourdata: 42")
    #drawNiceRobot(app.width, app.height)

print("Testing graphics...")
print("You should try different window sizes, and test manual resize")
runApp()  # you can try specific window sizes
