diff --git a/drawing.py b/drawing.py index ae30508..a51ef54 100644 --- a/drawing.py +++ b/drawing.py @@ -30,4 +30,12 @@ def draw_wing(x, y, width, height, color, angle): pendown() draw_oval(t, width, height, color) + +def draw_body(): + penup() + goto(0,-100) + setheading(90) + pendown() + draw_oval(10,45,"black") + input() \ No newline at end of file