Upload code
This commit is contained in:
21
Animation/Viereck drehung.py
Executable file
21
Animation/Viereck drehung.py
Executable file
@@ -0,0 +1,21 @@
|
||||
from turtle import*
|
||||
import time
|
||||
#tracer(1)
|
||||
#ht()
|
||||
|
||||
def viereck():
|
||||
for i in range(1000000000000000):
|
||||
clear()
|
||||
pu()
|
||||
setpos(0,0)
|
||||
rt(10)
|
||||
fd(50)
|
||||
rt(90)
|
||||
pd()
|
||||
for i in range(4):
|
||||
fd(50)
|
||||
rt(90)
|
||||
fd(50)
|
||||
time.sleep(0.05)
|
||||
|
||||
viereck()
|
||||
Reference in New Issue
Block a user