#############################
# hw4.py (PART A)
#
# Your name:
# Your andrew id:
#################################################

from cmu_graphics import*
import math
import string


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


#### drawQatarFlag (manually graded) ####

def drawQatarFlag(width, height):
    return None

#### drawBarChart (manually graded) ####

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

#### drawNiceRobot (manually graded) ####

def drawNiceRobot(width, height):
    return None


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

def redrawAll(app):
    # uncomment one of them at a time
    drawQatarFlag(760, 300)
    #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(950, 500)  # you can try specific window sizes
