About
Sign Up
Run
Check
main.py
animations.py
rainbow.py
import turtle import time from rainbow import draw_rainbow colorz = ['violet', 'indigo', 'blue', 'green', 'yellow', 'orange', 'red'] rad = -180 val = 0 def setup(screen): # You can delete any or all of this setup code to make your own. screen.bgcolor("black") draw_rainbow(colorz, rad, val) # Use sally to set up your screen sally = turtle.Turtle() # Hide her since she's a setupper sally.hideturtle() sally.color("white") sally.penup() sally.goto(0,-100) sally.write("Click anywhere to draw clouds for the rainbow!", None, "center", "12pt bold") sally.penup() sally.goto(0,-150) sally.write("Use arrows to make Tina turtle fly around the sky!", None, "center", "12pt bold") #I used a reference from our first day in class to create clouds on click. class MyTurtle(turtle.Turtle): def __init__(self, screen = turtle.Screen()): turtle.Turtle.__init__(self, screen) self.hideturtle() def create_turtles(screen, n = 2): for i in range(n): MyTurtle(screen) def move_turtles(screen, dist=7, angle = 6): for i, turtle in enumerate(screen.turtles()): turtle.circle(25) x, y = turtle.pos() turtle.color("white")
# Import turtle package import turtle # Creating a turtle screen object screen = turtle.Screen() tina = turtle.Turtle() # Definition for rainbow using half circles def draw_rainbow(colorz, rad, val): tina.color(colorz) tina.circle(rad, -180) tina.penup() tina.setpos(val, 0) tina.down() tina.right(180) #colors for rainbow colorz = ['violet', 'indigo', 'blue', 'green', 'yellow', 'orange', 'red'] # Setup the screen - for some reason it disappears without this screen.setup(555, 555) screen.bgcolor('black') #turtle features tina.right(90) tina.width(10) tina.speed(9) # Loop to draw 7 arches in rainbow for i in range(7): draw_rainbow(colorz[i], 10*( i + 7), -10*(i + 1)) # Hide the turtle tina.hideturtle()