-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSierpinski Triangle.py
63 lines (50 loc) · 1.38 KB
/
Sierpinski Triangle.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import turtle
import sys
def createLSystem(numIters,axiom):
startString = axiom
endString = ""
for i in range(numIters):
endString = processString(startString)
startString = endString
return endString
def processString(oldStr):
newstr = ""
for ch in oldStr:
newstr = newstr + applyRules(ch)
return newstr
def applyRules(ch):
newstr = ""
if ch == 'F':
newstr = 'FF' # Rule 1
elif ch == 'X':
newstr = '--FXF++FXF++FXF--' # Rule 2
else:
newstr = ch # no rules apply so keep the character
return newstr
def drawLsystem(aTurtle, instructions, angle, distance):
for cmd in instructions:
if cmd == 'F':
aTurtle.forward(distance)
elif cmd == 'B':
aTurtle.backward(distance)
elif cmd == '+':
aTurtle.right(angle)
elif cmd == '-':
aTurtle.left(angle)
def main():
sys.setExecutionLimit(40000)
inst = createLSystem(5, "FXF--FF--FF") # create the string
# print(inst)
t = turtle.Turtle() # create the turtle
wn = turtle.Screen()
t.penup()
t.back(200)
t.right(90)
t.forward(100)
t.left(90)
t.pendown()
t.speed(0)
drawLsystem(t, inst, 60, 5) # draw the picture
# angle 60, segment length 5
wn.exitonclick()
main()