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.
This commit is contained in:
caglazir
2025-10-06 20:03:52 -04:00
parent 27d744a4f1
commit 6e78205c32

View File

@@ -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()