-
-
Save stephengruppetta/6706fc16263edc88d91084a7918cef32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import time | |
import turtle | |
rotation_speed = 0.5 | |
spawn_interval = 0.05 | |
ball_speed = 2 | |
# Set up window | |
window = turtle.Screen() | |
window.tracer(0) | |
spinner = turtle.Turtle() | |
# Spawn new balls | |
colour = random.random(), random.random(), random.random() | |
balls = [] | |
def spawn_ball(reference): | |
balls.append(turtle.Turtle()) | |
balls[-1].shape("circle") | |
balls[-1].color(colour) | |
balls[-1].turtlesize(0.5) | |
balls[-1].penup() | |
balls[-1].setposition(reference.position()) | |
balls[-1].setheading(reference.heading()) | |
# Main animation loop | |
spawn_timer = time.time() | |
while True: | |
spinner.left(rotation_speed) | |
# Spawn new ball | |
if time.time() - spawn_timer > spawn_interval: | |
spawn_ball(spinner) | |
spawn_timer = time.time() | |
# Move all balls | |
for ball in balls: | |
ball.forward(ball_speed) | |
window.update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yoink thanks