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

from cmu_graphics import*
import math
import string


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



#### drawFlagOfTheEU ####
def drawFlagOfTheEU(x0, y0, width, height):
   return None


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

#### drawYourFavouriteAnimal ####
def drawYourFavouriteAnimal(width, height):
    return None
    
    
#################################################
# Test Functions
#################################################

def redrawAll(app):
    # uncomment one of them at a time
    drawFlagOfTheEU()
    #drawBarChart(app.width, app.height, "yourdata: 42")
    #drawYourFavouriteAnimal(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