From 6e78205c325b50b29bc435e980ba8d27a407137b Mon Sep 17 00:00:00 2001 From: caglazir Date: Mon, 6 Oct 2025 20:03:52 -0400 Subject: [PATCH] I concluded my drawing project. For the last stage of my drawing project, I got stuck on the animation. I am not sure if I did something wrong or followed the wrong steps, but I was unable to animate my drawing which made me quite sad! I tried a few variations of animation such as translate and rotate, but none worked the way I intended. I am still happy with my drawing though. I wish we had more visual tutorials and maybe even class workshop times to come together and discuss these things because asking for help when everyone is working at their own pace and hours make it very awkward and inconvenient to reach out to others. I would eventually love to learn animation but I think timing of this project was not it. --- drawing.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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() + + +