Skip to content

Commit de4bf47

Browse files
committed
wired
1 parent 527cb54 commit de4bf47

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Recursion Visulaizer/Chainsaw.PNG

-54.8 KB
Binary file not shown.
-71.6 KB
Binary file not shown.

Recursion Visulaizer/recursionVisualizer.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ def tree(i):
1919
tree(3*i/4)
2020
t.left(2)
2121
tree(i/2)
22-
t.backward(num)
22+
t.backward(num/5)
2323
tree(i/10)
24-
tree(45)
25-
tree(num/5)
26-
t.forward(num)
24+
tree(num)
25+
t.forward(num/5)
2726
t.right(2)
2827
tree(3*i/4)
2928
t.right(2)

Recursion Visulaizer/wired.PNG

142 KB
Loading

0 commit comments

Comments
 (0)