generated from mwc/project_drawing
It took me a while to think of an animation that I could crate procedurally but not have it be overly complicated. I was thinking of doing an inch worm but I'm not sure what kind of function to use for that shape --maybe a gaussian.
8 lines
137 B
Python
8 lines
137 B
Python
# drawing.py
|
|
# ----------
|
|
# By Tristan Gaeta
|
|
#
|
|
# This program makes an animation of a snake using Turtle graphics.
|
|
|
|
from turtle import *
|