generated from mwc/project_drawing
21 lines
474 B
Python
21 lines
474 B
Python
# drawing.py
|
|
# ----------
|
|
# By Cory
|
|
#
|
|
# This program draws the juggling upper body of a bald juggler.
|
|
|
|
from helper_functions import *
|
|
|
|
HALF = 200 # Max x- and y-coordinate the turtle will go to.
|
|
|
|
# Sets up a square region with max x-coordinate HALF and min -HALF
|
|
startingPosition(HALF)
|
|
|
|
# Draw a person, appropriately scaled
|
|
drawPerson(HALF)
|
|
|
|
# Draw juggling balls, arranged in a circle and appropriately scaled
|
|
drawJugglingCircle(HALF,0)
|
|
|
|
# Do not close immediately
|
|
input() |