generated from mwc/project_drawing
Wrote proposal in README.md
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.
This commit is contained in:
16
README.md
16
README.md
@@ -1,21 +1,11 @@
|
|||||||
# (Drawing project)
|
# (Drawing project)
|
||||||
|
|
||||||
(
|
Creating an animation using Turtle graphics
|
||||||
This is the README file for your drawing project.
|
|
||||||
Replace all the text in parentheses with your own text.
|
|
||||||
It's written in a simple language called Markdown,
|
|
||||||
which allows basic formatting.
|
|
||||||
)
|
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
(Describe your goal for this project. If you want to link to an
|
I would like to create an animation of a slithering snake because it is something that could be generated procedurally using parametric functions.
|
||||||
image, move the image to this directory, and then use the following syntax:
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
)
|
|
||||||
|
|
||||||
## Planning
|
## Planning
|
||||||
|
|
||||||
(Include your planning here, including your project milestone.)
|
I'll need to break the snake up into its components --probably a head, body, and tail-- and then try to create the slithering animation using like a sine function. I also might need to consider the orientation of the head/tail to get a better result
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# drawing.py
|
# drawing.py
|
||||||
# ----------
|
# ----------
|
||||||
# By ____(you)___________
|
# By Tristan Gaeta
|
||||||
#
|
#
|
||||||
# (Briefly describe what this program does.)
|
# This program makes an animation of a snake using Turtle graphics.
|
||||||
|
|
||||||
from turtle import *
|
from turtle import *
|
||||||
|
|||||||
Reference in New Issue
Block a user