diff --git a/drawing.py b/drawing.py index 29fc89e..b9aa7c2 100644 --- a/drawing.py +++ b/drawing.py @@ -1,7 +1,31 @@ # drawing.py # ---------- -# By ____(you)___________ +# By Patrick Wick # -# (Briefly describe what this program does.) +# 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) + + +