In this lab, you will create a tree-drawing program that uses recursion to draw the branches by drawing smaller and smaller trees.
On this page, you will explore nesting code for trees inside code for trees.
            The branching pattern on many plants has fractal structure: the smaller parts are like miniature copies of the whole plant. 
            
A fractal is an infinite repeating pattern made up of copies (or slight variations) of the same shape. In this picture, the green branch is (essentially) the same shape as the entire picture.

tree 1 block. It looks simple, but things will get more complicated soon.
.png) . You should get a result like this:
. You should get a result like this:  
                    	 Where does your sprite start? In what direction is it facing? Where does it stop?
 Where does your sprite start? In what direction is it facing? Where does it stop?tree 1 to draw the branches in tree 2 is using abstraction.tree 2 block that uses tree 1 as its branches.
.png)
 
                         Describe exactly the position and direction of the sprite when the first
 Describe exactly the position and direction of the sprite when the first tree 1 stops running. Why is that essential for tree 2 to work?State transparency means putting everything back exactly as it was when you started. It is especially important when blocks depend on other blocks. Usually, this means returning the sprite to the same position and direction and returning the pen to the same color and size.
tree 3 block that uses the tree 2 block as branches.
                     
                        tree 4 block that uses the tree 3 block as branches.tree 5 block that uses the tree 4 block. Running .png) should produce a result like this.
 should produce a result like this. 
 
                These blocks all look essentially the same except that tree 5 uses tree 4, while tree 4 uses tree 3, and tree 3 uses tree 2, etc. So it makes sense to wonder if we can replace all these blocks with a single tree block by using a variable for the number that changes. 
Using a procedure inside of itself is called recursion.
 What are the differences between this recursive tree script and the code for
 What are the differences between this recursive tree script and the code for tree 2 and tree 3, and why are these differences needed? 
                tree, level: 9 size: 50. What's going wrong?
 What's going wrong?