1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#
# Code under the MIT license by Alexander Pruss
#
import lsystem
from mcturtle import *
t = Turtle()
t.pendelay(0)
t.turtle(None)
t.penblock(BRICK_BLOCK)
t.gridalign()
# http://mathforum.org/advanced/robertd/lsys2d.html
rules = { 'X': 'XF-F+F-XF+F+XF-F+F-X' }
def go():
t.startface()
for i in range(4):
t.go(4)
t.pitch(90)
t.endface()
t.go(4)
dictionary = {
'F': go,
'+': lambda: t.yaw(90),
'-': lambda: t.yaw(-90),
}
lsystem.lsystem('X', rules, dictionary, 4)
|