diff --git a/drawing.py b/drawing.py index c6c56d0..91a245d 100644 --- a/drawing.py +++ b/drawing.py @@ -2,8 +2,11 @@ # ---------- # By Challa Zirek # -# (Briefly describe what this program does.) +# (This project draws two ghosts, in theme of Halloween.) +import superturtle +from superturtle import * +from superturtle.animation import * import turtle from turtle import * import bezier @@ -12,6 +15,7 @@ import numpy as np TurtleScreen=turtle.Screen turtle.bgcolor("#B04021") turtle.pensize(4) + def ghostie(length,x,y): turtle.pencolor("#3C025E") turtle.fillcolor("#B8B8B8") @@ -97,7 +101,9 @@ penup() turtle.home() pendown() ghostie (30, 150, 250) -hideturtle() + + +