CIRCLES!!!!!
All it is is circles I don't know why you are so excited
mwilki7 (519)
circleception!
import turtle
import math
colors = ['blue', 'red', 'green', 'yellow', 'purple', 'silver', 'magenta']
nextcolor = 0
x = 0
y = 0
pip = turtle.Turtle()
pip.shape("turtle")
pip.speed(100)
circlesize = 50
circlewidth = 50
circleheight = 50
circleangleprojection = 50
while True:
pip.goto(math.sin(x)*circlesize
+ math.sin(y)*circlewidth,
math.cos(x)*circleheight
+ math.sin(y)*circleangleprojection)
pip.color(colors[nextcolor % len(colors)])
nextcolor = nextcolor + 1
x = x + 50
y = y + 50
pip.begin_fill()
pip.circle(10)
pip.end_fill()
yo piper is Michael remember the white kid that played speed ? how have you been.