generated from mwc/project_drawing
16 lines
381 B
Python
16 lines
381 B
Python
# drawing.py
|
|
# ----------
|
|
# By Stacy S
|
|
#
|
|
# (Drew a tree. Trying to make it change colors.)
|
|
|
|
from turtle import *
|
|
from shapes import *
|
|
from superturt import *
|
|
|
|
with no_delay():
|
|
for frame in animate(frames=6, loop=True, debug=False):
|
|
with restore_state_when_finished():
|
|
draw_tree_nl(20)
|
|
with restore_state_when_finished():
|
|
draw_tree_wl(20) |