-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharrowHeadCurve.py
52 lines (42 loc) · 1.21 KB
/
arrowHeadCurve.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
import turtle
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 == 'X':
newstr = 'YF+XF+Y' # Rule 1
elif ch == 'Y':
newstr = 'XF-YF-X'
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():
inst = createLSystem(5, "YF") # create the string
print(inst)
t = turtle.Turtle() # create the turtle
wn = turtle.Screen()
t.speed(9)
drawLsystem(t, inst, 60, 5) # draw the picture
# angle 90, segment length 5
wn.exitonclick()
main()