Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import math from turtle import * def hearta(k): return 15*math.sin(k)**3 def heartb(k): return 12*math.cos(k)-5*\ math.cos(2*k)-2*\ math.cos(3*k)-\ math.cos(4*k) speed(9000) bgcolor("black") for i in range(6000): goto(hearta(i)*20,heartb(i)*20) for j in range(5): color("red") goto(0,0) done() #1

Open
Mung357 opened this issue Dec 6, 2024 · 0 comments

Comments

@Mung357
Copy link

Mung357 commented Dec 6, 2024

import math
from turtle import *

def hearta(k):
return 15*math.sin(k)**3

def heartb(k):
return 12math.cos(k)-5
math.cos(2k)-2
math.cos(3k)-
math.cos(4
k)

speed(9000)
bgcolor("black")

for i in range(6000):
goto(hearta(i)20,heartb(i)20)
for j in range(5):
color("red")
goto(0,0)
done()
**

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant