User:FluffyDunlop/Networked Prototyping: Difference between revisions
FluffyDunlop (talk | contribs) No edit summary |
FluffyDunlop (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
___________ __ .__ | |||
\__ ___/_ __________/ |_| | ____ | |||
| | | | \_ __ \ __\ | _/ __ \ | |||
| | | | /| | \/| | | |_\ ___/ | |||
|____| |____/ |__| |__| |____/\___ > | |||
\/ | |||
<gallery> | <gallery> | ||
File:Turtle_01.png|Turtle Test 1 | File:Turtle_01.png|Turtle Test 1 | ||
Line 6: | Line 14: | ||
File:Turtle_05.png|Turtle Test 5 | File:Turtle_05.png|Turtle Test 5 | ||
</gallery> | </gallery> | ||
<code> | |||
import turtle | |||
import random | |||
turtle.setx(0) | |||
turtle.speed("fastest") | |||
turtle.home() | |||
turtle.setheading(0) | |||
home = 50,50 | |||
fwd = 80 | |||
def once(): | |||
for i in range(1): | |||
turtle.left(10) | |||
turtle.forward(fwd) | |||
turtle.dot(5) | |||
turtle.right(20) | |||
turtle.forward(fwd) | |||
turtle.dot(4) | |||
turtle.left(40) | |||
turtle.forward(40) | |||
turtle.dot(3) | |||
turtle.right(80) | |||
turtle.forward(20) | |||
turtle.dot(2) | |||
turtle.left(160) | |||
turtle.forward(10) | |||
turtle.dot(1) | |||
def once1(): | |||
for i in range(1): | |||
turtle.left(10) | |||
turtle.forward(fwd) | |||
turtle.dot(5) | |||
turtle.right(20) | |||
turtle.forward(fwd) | |||
turtle.dot(4) | |||
turtle.left(40) | |||
turtle.forward(20) | |||
turtle.dot(3) | |||
turtle.right(80) | |||
turtle.forward(10) | |||
turtle.dot(2) | |||
turtle.left(160) | |||
turtle.forward(5) | |||
turtle.dot(1) | |||
for i in range (30): | |||
once() | |||
fwd = fwd + 5 | |||
for i in range (30): | |||
once() | |||
fwd = fwd + 10 | |||
for i in range (30): | |||
once() | |||
for i in range (30): | |||
once() | |||
fwd = fwd + 15 | |||
for i in range (30): | |||
once() | |||
fwd = fwd + 20 | |||
for i in range (30): | |||
once() | |||
turtle.mainloop() | |||
</code> |
Revision as of 12:57, 14 January 2014
___________ __ .__
\__ ___/_ __________/ |_| | ____
| | | | \_ __ \ __\ | _/ __ \ | | | | /| | \/| | | |_\ ___/ |____| |____/ |__| |__| |____/\___ > \/
import turtle
import random
turtle.setx(0)
turtle.speed("fastest")
turtle.home()
turtle.setheading(0)
home = 50,50
fwd = 80
def once():
for i in range(1):
turtle.left(10)
turtle.forward(fwd)
turtle.dot(5)
turtle.right(20)
turtle.forward(fwd)
turtle.dot(4)
turtle.left(40)
turtle.forward(40)
turtle.dot(3)
turtle.right(80)
turtle.forward(20)
turtle.dot(2)
turtle.left(160)
turtle.forward(10)
turtle.dot(1)
def once1():
for i in range(1):
turtle.left(10)
turtle.forward(fwd)
turtle.dot(5)
turtle.right(20)
turtle.forward(fwd)
turtle.dot(4)
turtle.left(40)
turtle.forward(20)
turtle.dot(3)
turtle.right(80)
turtle.forward(10)
turtle.dot(2)
turtle.left(160)
turtle.forward(5)
turtle.dot(1)
for i in range (30):
once()
fwd = fwd + 5
for i in range (30):
once()
fwd = fwd + 10
for i in range (30):
once()
for i in range (30):
once()
fwd = fwd + 15
for i in range (30):
once()
fwd = fwd + 20
for i in range (30):
once()
turtle.mainloop()