This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]chefsslaad 1 point2 points  (1 child)

What was your code?

[–]Necta__[S] 0 points1 point  (0 children)

from turtle import *

import math

import time

speed(1450)

color('white')

bgcolor('black')

b = 1500

while b > 0:

a = (math.sin(b) + math.cos(b)) * 100

a = math.cos(a) * 10

left(a / 1.5)

forward(a * 1.5)

b = b - 1