# drawing.py # ---------- # By Patrick Wick # # This program will (hopefully) draw a dog from turtle import * import superturtle as st # for the dog's ears def ear(rad): # draw an ellipse, rad is the "radius" of the ellipse for i in range(2): # two arcs, each one half of the ellipse circle(rad,90) # long side circle(rad//25,90) # short side # main part of the dog's face def face(rad): # draw an ellipse, rad is the "radius" of the ellipse for i in range(2): # two arcs, each one half of the ellipse circle(rad,90) # long side circle(rad//2,90) # short side face(100)