Computers can be powerful tools for artists. Their ability to represent curves and lines precisely make them a useful to for graphic designers. In this assignment you will use the Turtle module as a computer aided design tool.
Details
Create a Python program that uses the turtle module to draw a picture. The picture can be anything you want, but must do the following:
- Have a single variable that specifies the size of the entire drawing. Note, this implies that changing the single size variable will change the size of the entire drawing.
- Use both the all of the following functions at least once:
forward
goto
up
down
- Use more than one color.
- Draw something filled and something not filled.
- Be impressive.
Here are some examples of drawings from last year's class that were impressive:
Extra
Astounding drawings will receive extra credit. I will be the arbiter of whether a drawing is astounding, but as a general rule they should be more impressive than the above examples.
Submission
Your code should conform to the course’s code conventions and will be graded according the the course’s programming assignment rubric. Submit your program as a .py file on the course Inquire page before class on Friday September 10th.